/* 

-- 01 - TYPOGRAPHY SYSTEM
  - FONT SIZE SYSTEM (px)
  10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

*/


/* GLOBAL VARIABLES */
:root {
    --yellow-color: #ffdd00;
    --white-color: #fff;
    --black-color: #000;
    --grey-color: #666;
    --darker-grey: #434343;

    --dark-red: #230000;

    /* Discount */
    --discount-text-red: #cd0000;
    --discount-text-blue: #0b0989;
}

/* FONTS */
@font-face {
    font-family: "Poppins, sans-serif";
    font-style: normal;
    font-weight: normal;
    src: local('Helvetica'), url('../css/fonts/Helvetica.ttf'), format('ttf');
}

/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GLOBAL STYLES */

html {
    overflow-x: hidden;
}

body {
    overflow: hidden;
    background-image: url("../img/lead/background-cellar.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

body:after {
    content: ' ';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--black-color), var(--dark-red), var(--black-color));
    opacity: 0.8;
    z-index: -1;
}

.container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.highlight:hover {
    content: 'needs photo';
}

/* DESIGN */
/* REUSABLE */

/* .paralax {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://www.thedoctorssurvivalplan.com/tsl/img/paralax.webp');
    min-height: 130px;
    background-attachment: fixed;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0px 0px 10px -5px var(--black-color);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #FFF;
    padding: 10px 15px;
} */
.paralax {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d0a0a 50%, #1a1a1a 100%);
    min-height: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #FFF;
    padding: 40px 40px;
    border-left: 5px solid #c0392b;
}


.paralax p {
    margin: 0;
    padding: 0;
    font-size: 30px;
    text-align: center;
    font-weight: 600;
}

.bgr-white {
    background-color: #FFF;
}

.mx-center {
    margin: 0 auto;
}

.text-bold {
    font-weight: 600 !important;
}

.text-italic {
    font-style: italic !important;
}

.text-underline {
    text-decoration: underline !important;
}

.text-em {
    font-size: 25px !important;
}

.text-em--big {
    font-size: 28px !important;
}

.video {
    align-self: center;
    justify-self: center;
}

.video iframe {
    height: 300px;
}

.reusable-grid {
    display: grid;
    column-gap: 5px;
    row-gap: 5px;
    justify-content: center;
}

.reusable-grid--1-col {
    grid-template-columns: 1fr;
}

.reusable-grid--2-col {
    grid-template-columns: repeat(2, 1fr);
}

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

.reusable-grid--center-vertical {
    align-items: center;
}

.reusable-flex {
    display: flex;
}

.reusable-flex--dir-column {
    flex-direction: column;
}

.reusable-flex--dir-row {
    flex-direction: row;
}

.reusable-flex--gap-30 {
    gap: 30px;
}


.img18 {
    grid-column: 1 / -1;
}

/* .image-width-100 {
    width: 100% !important;
} */


/* TODO DELETE AFTER FINAL */
.todo {
    color: #555;
    border: 1px solid #000;
}

.todo p {
    margin: 0;
    font-size: 24px;
    font-family: Montserrat,sans-serif;
}

/* Content */
/* -- Headline Section -- */
.headline-section {
    color: #FFF;
    padding: 50px 30px 0px 30px;
    max-width: 1300px;
}

.headline-section--tsl {
    padding: 60px 30px 0px 30px;
    max-width: 1300px;
}

.headline-section>*,
.headline-section--tsl>* {
    font-family: 'nobel' !important;
}

/* Global Headlines */
/* -- Headline Section -- */
.headline-section {
    color: #FFF;
    padding: 50px 30px 0px 30px;
    max-width: 1300px;
}

/* Global Headlines */
.headline-1 {
    /* min 30px, scalează cu viewport, max 62px */
    font-size: clamp(30px, 6vw, 62px);
    font-weight: 700 !important;
    line-height: 0.95;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.headline-3 {
    /* min 17px, scalează, max 30px */
    font-size: clamp(17px, 3vw, 30px);
    font-weight: 300;
    line-height: 1.1;
    margin-top: 20px;
    margin-bottom: 25px;
}

/* -- Mobile -- */
@media (max-width: 768px) {
    .headline-section {
        padding: 30px 18px 0px 18px;
    }

    .headline-1 {
        line-height: 1.12;
        letter-spacing: -0.3px;
        margin-bottom: 8px;
    }

    .headline-3 {
        margin-top: 12px;
        margin-bottom: 16px;
        line-height: 1.35;
    }
}

@media (max-width: 480px) {
    .headline-section {
        padding: 24px 16px 0px 16px;
    }
}

/* -- TSL Section -- */
.tsl-section {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    /* margin-top: 20px; */
}

.tsl-header {
    margin-bottom: 40px;
}

.tsl-header p {
    font-size: 32px;
}

.tsl-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 5px 50px;
}

.tsl-paragraphs.reset {
    padding: 0 10px;
}

.custom-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.custom-list,
.custom-list--question {
    list-style: none;
    margin: 0 0 20px 5px;
}

.tsl-paragraphs>p,
.custom-list,
.custom-list--check-p {
    font-size: 23px;
    font-family: 'Ubuntu', sans-serif;
    margin: 0;
}



.delimiter {
    margin: 30px 0;
    border-top: 1px solid #333;
}

.guarantee-badge,
.article-img {
    margin: 40px auto;
    width: 70%;
}

.book {
    width: 80%;
    margin-top: -20px;
}


/* References Custom Styling */
.ref-text p {
    color: #9C9C9C !important;
    font-size: 13px !important;
}

.ref-link {
    word-break: break-all;
}

.accordion-button {
    font-size: 1.2em !important;
    font-weight: bold;
    border: 1px solid #7f1619 !important;
}

.accordion-button:focus {
    border-color: #7f1619 !important;
    box-shadow: none !important;
}

.accordion-button:hover,
.accordion-button:not(.collapsed) {
    color: black !important;
    background-color: white !important;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}


/* CTA BUTTONS */
.cta-container {
    align-self: center;
}

.bttn,
.bttn:link,
.bttn:visited {
    /* links */
    display: inline-block;
    text-decoration: none !important;
    font-size: 32px;
    font-weight: 600;
    padding: 20px 32px;
    border-radius: 9px;

    /* button */
    border: none;
    cursor: pointer;
    font-family: inherit;

    transition: 300ms;
    transition-property: all;
}

.bttn--cta,
.bttn--cta:link,
.bttn--cta:visited {
    background-color: #ffd500;
    color: #333;
}

.bttn--cta:hover,
.bttn--cta:active {
    background-color: #edbf12;
    color: #333;
}

/* BUY BUTTON */

.buy-container-width {
    /* margin: 0 -20px 0 -20px; */
}

.buy-container {
    box-shadow: 0 0 10px -5px #333;
    border-radius: 30px;
    padding: 0 0 30px 0;
    /* width: 500px; */
    overflow: hidden;
}

.buy-container p {
    margin: 0;
}

.product-type {
    background-color: #b05c24;
    padding: 40px 0;
}

.product-type-txt {
    color: #fff;
    text-align: center;
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 700;
}

.product-buy {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.price-shipping {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.price,
.shipping {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.price-txt {
    font-size: 80px !important;
    font-weight: bold;
}

.shipping-fee {
    font-weight: bold;
    font-size: 16px !important;
}

.shipping-txt {
    color: #b05c24;
    font-weight: bold;
    font-size: 16px !important;
}

.bttn-add,
.bttn-add:link,
.bttn-add:visited {
    /* link/text*/
    display: inline-block;
    text-decoration: none !important;
    padding: 22px 20px;
    border-radius: 9px;
    font-size: 24px;
    font-weight: 700;

    /* button */
    border: none;
    cursor: pointer;
    font-family: inherit;

    background: linear-gradient(to bottom, #fed502, #efbd10);
    box-shadow: 0 5px 10px rgb(0 0 0 / 15%);
    color: #111;

}

.bttn-buy a,
.bttn-buy a:hover {
    /* text-decoration: none;
    color: #000; */
}

.guarantee-txt {
    color: #924d20;
    font-weight: bold;
    font-size: 20px !important;
    margin-bottom: 0;
    text-align: center;
}

.guarantee {
    display: flex;
    flex-direction: row;
    align-self: normal;
}

.guarantee:before,
.guarantee:after {
    content: "";
    flex: 1 1;
    border-bottom: 1px solid #000;
    margin: auto;
    margin: auto 15px;
}

.payments {
    display: flex;


}

.payments img {
    display: block;
    margin: 0 auto;
    height: auto;
    width: 80%;
    max-width: 100%;
}

.mockup {
    width: 100% !important;
}

.padding-row {
    padding-bottom: 10rem;
}
/* SubHead White */

.subhead-white {
    text-align: center;
    padding: 35px 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.subhead-white h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0 0 12px;
    font-family: Arial, Helvetica, sans-serif;
}

.subhead-white .sh-highlight {
    display: inline;
    background: #c0392b;
    color: #fff;
    font-weight: 800;
    font-size: 36px;
    padding: 4px 14px;
    line-height: 1.6;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.subhead-white .sh-line {
    width: 60px;
    height: 3px;
    background: #c0392b;
    margin: 0 auto 16px;
}

@media (max-width: 767px) {
    .subhead-white {
        padding: 25px 20px;
    }

    .subhead-white h2 {
        font-size: 28px;
    }

    .subhead-white .sh-highlight {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .subhead-white h2 {
        font-size: 24px;
    }

    .subhead-white .sh-highlight {
        font-size: 24px;
    }
}

/* enbd */
/* Testimonials */

.testimonial-card {
    background: #fffdf7;
    border: 1px solid #e8e4d9;
    border-radius: 12px;
    padding: 28px 30px 22px;
    position: relative;
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 12px;
    left: 18px;
    font-size: 56px;
    line-height: 1;
    color: #c0392b;
    opacity: 0.25;
    font-family: Georgia, serif;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: #d4a017;
}

.testimonial-card .testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin: 0 0 14px;
    padding-left: 6px;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #e8e4d9;
    padding-top: 12px;
    text-align: left;
}

.testimonial-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #c0392b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.testimonial-badge {
    font-size: 12px;
    color: #2e7d32;
    font-weight: 600;
    margin: 0;
}

.testimonial-badge::before {
    content: "\2713";
    margin-right: 4px;
}

@media (max-width: 575px) {
    .testimonial-card {
        padding: 22px 20px 18px;
    }

    .testimonial-card .testimonial-text {
        font-size: 16px;
    }

    .testimonial-card::before {
        font-size: 44px;
    }
}
/* Discount Page */
.headline-section--discount {
    color: #000;
    max-width: 1300px;
    margin-bottom: 50px;
}

.headline-1--discount {
    font-size: 75px;
    font-weight: 700 !important;
    color: var(--discount-text-red);
}

.headline-2--discount {
    font-size: 50px;
    font-weight: 500;
    color: var(--discount-text-blue);
}

.headline-3--discount {
    font-size: 30px;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 25px;
}

.title-above-btn,
.title-above-btn--discount {
    font-size: 38px !important;
    text-align: center;
    font-weight: 700;
}

.custom-list--check {}

.custom-list--check-item {}

.custom-list--check-bullet {
    display: inline;
    max-width: 30px !important;
}

.custom-list--check-p {
    display: inline;
}


.custom-list,
.custom-list--question {
    list-style: none;
    margin: 0 0 20px 20px;
}

.custom-list li,
.custom-list--question li {
    position: relative
}

.custom-list li:before {
    content: "\2713";
    color: darkred;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
}

.custom-list--question li:before {
    content: "\003F";
    color: darkred;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
}


.guarantee-section {
    margin-top: 50px;
}

figcaption {
    text-align: center;
    font-size: 12px;
}

.highlighted {
    background-color: yellow;
    border-radius: 8px;
    padding: 1px 5px;
}

/* QUERIES */

@media (min-width: 480px) {

    .pic1,
    .pic2 {
        height: -webkit-fill-available !important;
    }
}

@media (max-width: 1200px) {

    /* .headline-2,
    .headline-2--discount {
        font-size: 45px
    } */
}

@media (max-width: 991px) {
    .flex-gap-22 {
        gap: 22px;
    }

    .headline-3--banners {
        font-size: 35px;
    }

    .headline-1,
    .headline-1-tsl {
        font-size: 52px;
    }

    .headline-2,
    .headline-2--tsl {
        font-size: 30px;
    }

    .headline-3,
    .headline-3--tsl {
        font-size: 24px;
    }

    .tsl-paragraphs p,
    .custom-list,
    .custom-list--check-p {
        font-size: 20px;
    }

    .text-em {
        font-size: 22px !important;
    }

    .text-em--big {
        font-size: 24px !important;
    }
}

@media (max-width: 767px) {
    .headline-3--banners {
        font-size: 30px;
    }

    .headline-1,
    .headline-1-tsl {
        font-size: 44px;
    }

    .headline-2,
    .headline-2--tsl {
        font-size: 24px;
    }

    .headline-3,
    .headline-3--tsl {
        font-size: 20px;
    }

    .tsl-paragraphs p,
    .custom-list,
    .custom-list--check-p {
        font-size: 18px;
    }

    .text-em {
        font-size: 20px !important;
    }

    .text-em--big {
        font-size: 22px !important;
    }

    .buy-container {
        width: 385px;
    }

    .article-img.reusable-grid--2-col {
        grid-template: revert;
    }

    .book {
        width: 90%;
    }
}

@media (max-width: 500px) {
    .buy-container {
        width: 100%;
    }

    .bttn-add,
    .bttn-add:link,
    .bttn-add:visited {
        padding: 22px 30px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .headline-3--banners {
        font-size: 26px;
    }

    .headline-1,
    .headline-1-tsl {
        font-size: 36px;
    }

    .headline-2,
    .headline-2--tsl {
        font-size: 20px;
    }

    .headline-3,
    .headline-3--tsl {
        font-size: 18px;
    }

    .tsl-paragraphs p,
    .custom-list,
    .custom-list--check-p {
        font-size: 20px;
    }


    .headline-section,
    .headline-section--tsl {
        padding: 40px 10px 30px;
    }

    .tsl-paragraphs {
        padding: 48px 30px;
    }

    .tsl-header p {
        font-size: 21px;
    }


    .guarantee:before,
    .guarantee:after {
        border-bottom: 0;
        margin: 0;
    }

    .reusable-grid--2-col {
        grid-template-columns: none;
        grid-template-rows: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {

    .headline-1,
    .headline-1-tsl {
        font-size: 30px;
    }

    .headline-2,
    .headline-2--tsl {
        font-size: 18px;
    }

    .headline-3,
    .headline-3--tsl {
        font-size: 18px;
    }

    .tsl-paragraphs p,
    .custom-list,
    .custom-list--check-p {
        font-size: 16px;
    }

    .text-em {
        font-size: 22px !important;
    }

    .text-em--big {
        font-size: 20px !important;
    }


    .price-shipping {
        flex-direction: column;
    }

    .payments img {
        width: 90%;
    }

    .guarantee-txt {
        font-size: 16px !important;
    }

    .bttn-add,
    .bttn-add:link,
    .bttn-add:visited {
        font-size: 18px;
        padding: 22px 20px;

    }
}

@media screen and (max-width: 767px) {
    .video_vimeo {
        height: 580px !important;
    }
}

/* ===================================
   BONUS CARDS — side-by-side layout
   =================================== */
.bonus-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    background: #fafaf5;
    border: 1px solid #e0ddd5;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.bonus-card--reversed {
    flex-direction: row-reverse;
}

.bonus-card__img {
    flex: 0 0 200px;
    max-width: 200px;
}

.bonus-card__img img {
    width: 100%;
    height: auto;
    display: block;
}

.bonus-card__content {
    flex: 1;
}

.bonus-card__label {
    display: inline-block;
    background: #c8daf0;
    color: #1a237e;
    font-weight: 700;
    font-size: 18px;
    padding: 4px 14px;
    border-radius: 5px;
    margin-bottom: 6px;
}

.bonus-card__value {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
}

.bonus-card__title {
    font-size: 26px;
    font-weight: 700;
    color: #8b1a1a;
    margin-bottom: 4px;
    line-height: 1.2;
    font-family: Montserrat,sans-serif;
}

.bonus-card__subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    font-style: italic;
}

.bonus-card__desc {
    font-size: 18px;
    color: #333;
    line-height: 1.55;
    margin: 0;
}

.bonus-card__note {
    font-size: 13px;
    color: #999;
    margin-top: 8px;
    text-align: center;
}

/* VALUE STACK TABLE */
.value-stack {
    max-width: 680px;
    margin: 30px auto;
    border: 2px solid #333;
    border-radius: 8px;
    overflow: hidden;
}

.value-stack__header {
    background: #1a1a1a;
    padding: 18px 20px;
    text-align: center;
}

.value-stack__header-title {
    color: #d4a017;
    font-weight: 700;
    font-size: 1.15em;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.value-stack__header-sub {
    color: #fff;
    font-weight: 700;
    font-size: 1.05em;
    margin: 6px 0 0;
}

.value-stack__row {
    border-bottom: 1px solid #e0e0e0;
    padding: 13px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.value-stack__row-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.value-stack__check {
    color: #2e7d32;
    font-size: 1.2em;
}

.value-stack__row-price {
    text-align: right;
    white-space: nowrap;
}

.value-stack__old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 6px;
}

.value-stack__badge {
    background: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 2px 8px;
    font-weight: 700;
    font-size: 0.85em;
}

.value-stack__section-header {
    background: #e8eaf6;
    padding: 10px 20px;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 700;
    color: #1a237e;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
}

.value-stack__footer {
    background: #1a1a1a;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.value-stack__footer-label {
    color: #d4a017;
    font-weight: 700;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-stack__footer-price {
    text-align: right;
}

.value-stack__footer-old {
    text-decoration: line-through;
    color: #999;
    font-size: 0.95em;
    display: block;
}

.value-stack__footer-new {
    color: #fff;
    font-weight: 700;
    font-size: 1.3em;
}

/* ===================================
   MOBILE: Bonus cards + paralax + value stack
   =================================== */
@media (max-width: 767px) {
    .bonus-card,
    .bonus-card--reversed {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .bonus-card__img {
        flex: none;
        max-width: 180px;
        margin: 0 auto;
    }

    .bonus-card__title {
        font-size: 22px;
    }

    .bonus-card__desc {
        font-size: 16px;
    }

    .paralax {
        padding: 28px 20px;
        border-left: 4px solid #c0392b;
    }

    .headline-3--banners {
        font-size: 26px;
    }

    .value-stack__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 12px 16px;
    }

    .value-stack__row-price {
        align-self: flex-end;
    }

    .value-stack__footer {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .value-stack__footer-price {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .bonus-card {
        padding: 20px 16px;
    }

    .bonus-card__img {
        max-width: 150px;
    }

    .bonus-card__title {
        font-size: 20px;
    }

    .bonus-card__label {
        font-size: 15px;
    }

    .bonus-card__desc {
        font-size: 15px;
    }

    .paralax {
        padding: 22px 16px;
        border-left: 3px solid #c0392b;
    }

    .headline-3--banners {
        font-size: 22px;
    }

    .value-stack__section-header {
        font-size: 13px;
    }
}
/* buy btns */

/* ===================================
   BUY SECTION — New Design
   =================================== */
.buy-section {
    margin: 40px auto;
    border: 3px dashed #c0392b;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    background: #fff;
}

.buy-section__top-img {
    width: 100%;
    display: block;
}

.buy-section__price-area {
    text-align: center;
    padding: 20px 20px 5px;
}

.buy-section__original-price {
    font-size: 22px;
    color: #8b1a1a;
    font-weight: 600;
    font-style: italic;
}

.buy-section__original-price span {
    text-decoration: line-through;
}

.buy-section__promo-label {
    font-size: 16px;
    color: #d4a017;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 6px;
}

.buy-section__promo-price {
    font-size: 52px;
    font-weight: 800;
    color: #8b1a1a;
    line-height: 1.1;
    margin-bottom: 5px;
}

.buy-section__buttons {
    padding: 15px 20px;
}

.buy-section__btn-img {
    width: 100%;
    display: block;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.buy-section__shipping-note {
    font-size: 13px;
    color: #666;
    font-style: italic;
    text-align: center;
    margin-top: 8px;
}

.buy-section__bottom-img {
    width: 100%;
    max-width: 525px;
    display: block;
    margin: 10px auto 0;
}

.buy-section__trust-list {
    list-style: none;
    padding: 10px 25px 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.buy-section__trust-list li {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.buy-section__trust-list li::before {
    content: "\2713";
    color: #2e7d32;
    font-weight: bold;
    margin-right: 8px;
}

/* Mobile */
@media (max-width: 575px) {
    .buy-section {
        margin: 30px 10px;
        border-width: 2px;
    }

    .buy-section__promo-price {
        font-size: 42px;
    }

    .buy-section__original-price {
        font-size: 19px;
    }

    .buy-section__trust-list li {
        font-size: 14px;
    }
}
@media (min-width:725px) {
    .d-space {
        margin-top:35px !important;
    }
}