* {
    box-sizing: border-box;
    font-family: "Big Caslon", serif;
}

@font-face {
    font-family: "Big Caslon";
    src: url("BigCaslonFB-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "SF Pro";
    src: url("/SFProText-Regular.ttf") format("ttf");
    font-weight: normal;
    font-style: normal;
}
body {
    margin: 0;
    padding: 0;
}
.container {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}
.main_bg_color {
    background-color: var(--bg_color_header);
}
/* Header start */
/* Block Logo */
/* Центрування логотипу */
.wrapp_header {
    display: flex;
    justify-content: space-between; /* логотип — влево, корзина — вправо */
    align-items: center;
    height: 48px;
    position: relative;
    padding: 0 10px;
}

.block_logo {
    flex: 1;
    display: flex;
    justify-content: center;
}

.block_cart {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}




/* Стилізація SVG логотипу */
.headerLogo {
    height: 40px;
    width: auto;
}

/* Тінь для хедера */
header.main_bg_color {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* м'яка тінь вниз */
    z-index: 10;
    position: relative;
}

/* Block timer */
.block_timer {
    text-align: center;
    color: var(--bg_color_timer);
    margin: 15px 0;
}
.block_timer > p {
    margin-top: 0;
    margin-bottom: 4px;
    font-size: 18px;
}
/* Header end */
/* Display product start */
#visib_main_product {
    display: block;
}
.wrapp_section_product {
    display: flex;
    flex-direction: column;
}
.text_header > h1 {
    margin: 10px 0;
    font-size: 2rem;
    text-align: center;
}
.text_header > p {
    margin: 0;
    font-size: 14px;
}
.main_block_product {
    width: 360px;
    margin: 0 auto;
}
.main_block_product > img {
    width: 100%;
    margin: 15px 0;
}
.text_bottom_product > p {
    margin: 5px 0;
    font-size: 14px;
}
.width_ratings {
    width: 230px;
}
/* block questions and answer */
.questions > p {
    font-size: 15px;
}
.questions > p > span {
    font-weight: bold;
}
.answer_button {
    text-align: center;
}
.answer_button > p {
    display: block;
    padding: 20px 0;
    margin: 10px 0;
    color: white;
    font-weight: bold;
    font-size: 18px;
    width: 100%;
    background-color: var(--main_button_color);
}
.answer_button > p:hover {
    cursor: pointer;
}
.decor_questions_js_two {
    display: none;
}
.decor_questions_js_three {
    display: none;
}
/* Display product end */
/* display check answer start */
#visib_block_check {
    display: none;
}
.header_chech {
    margin: 0 auto;
    text-align: center;
}
.header_chech > h2 {
    font-size: 2em;
    margin: 20px 0 10px 0;
}
.header_chech > img {
    max-width: 50px;
    width: 100%;
    opacity: .6;
    animation: spin 2s linear infinite;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.test_result > ul {
    margin-top: 60px;
}
.test_result > ul > li {
    list-style: none;
    margin-top: 20px;
    font-size: 16px;
    font-weight: bold;
}
.result_check_one, .result_check_two, .result_check_three {
    display: none;
}
/* display check answer end */
/* gift box start */
.wrapp_gift_box {
    display: grid;
    grid-template-columns: 140px 140px 140px 140px;
    grid-template-rows: 190px 190px 190px;
    margin-top: 130px;
    justify-content: center;
    grid-column-gap: 110px;
}
.element_box {
    position: relative;
}

.element_box:hover, .element_box:focus{
    animation: huita .3s linear forwards;
}

@keyframes huita {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(1deg);
    }

    20% {
        transform: rotate(3deg);
    }

    30% {
        transform: rotate(5deg);
    }

    40% {
        transform: rotate(7deg);
    }

    50% {
        transform: rotate(6deg);
    }

    60% {
        transform: rotate(4deg);
    }

    70% {
        transform: rotate(2deg);
    }

    80% {
        transform: rotate(-2deg);
    }

    90% {
        transform: rotate(-4deg);
    }

    100% {
        transform: rotate(-1deg);
    }
}

.box_cover {
    max-width: 130px;
    position: absolute;
    top: -41px;
}
.shadow_of_a_box {
    position: absolute;
    /* bottom: -73px; */
    max-width: 126px;
    z-index: -1;
}
.prize {
    position: absolute;
    max-width: 55px;
    top: 30px;
    left: 38px;
    z-index: -1;
}
.box_body {
    position: absolute;
    top: 13px;
    left: 3px;
    max-width: 123px;
    z-index: -1;
}
.open_box {
    top: -94px;
    transition: all 1.5s ease-in-out;
}
.open_prize {
    top: -28px;
    transition: all 2s ease-in-out;
}
.prize > img, .box_cover > img, .box_body > img, .shadow_of_a_box > img {
    width: 100%;
}
#visib_section_prize {
    display: none;
}
/* gift box end */
/* block modal start */
/* First and second modal */
#visib_modal_first {
    display: none;
}
#visib_modal_second {
    display: none;
}
.wrapp_modal_window {
    text-align: center;
    border-radius: 15px;
    position: absolute;
    background-color: white;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 500px;
    z-index: 10;
}
.wrapp_modal_window:nth-of-type(2) {
    max-width: 550px;
}
.modal_window_characteristik, .failed_attempt {
    padding: 20px;
}
.modal_window_characteristik > img {
    max-width: 200px;
    width: 100%;
    animation: boxModal 1.5s linear forwards;
    animation-iteration-count: infinite;
}
@keyframes boxModal {
    0% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(2deg);
    }
    
    20% {
        transform: rotate(4deg);
    }
    30% {
        transform: rotate(6deg);
    }
    40% {
        transform: rotate(4deg);
    }
    50% {
        transform: rotate(2deg);
    }
    60% {
        transform: rotate(0deg);
    }
    70% {
        transform: rotate(-2deg);
    }
    80% {
        transform: rotate(-4deg);
    }
    90% {
        transform: rotate(-2deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
.block_modal {
    margin-bottom: 30px;
}
.modal_window_characteristik > h2 {
    font-size: 25px;
    opacity: .7;
    margin: 0 auto;
    width: 100%;
    padding-top: 10px;
    word-break: break-word;
}
.failed_attempt > h2 {
    opacity: .6;
    font-size: 28px;
    font-weight: bold;
    margin: 20px 0 0 0;
}
.modal_window_characteristik > ol {
    list-style-type: none;
    text-align: center;
    font-size: 16px;
    padding-bottom: 22px;
    padding-left: 0;
}
.modal_window_characteristik > ol > li {
    padding-bottom: 10px;
}
.failed_attempt > p {
    font-size: 18px;
    margin-top: 10px;
    padding: 0 0 22px 0;
    text-align: center;
}
.block_modal > a {
    text-decoration: none;
    background-color: var(--main_button_color);
    color: white;
    padding: 20px 50px;
    font-size: 18px;
    border-radius: 15px;
    transition: all .3s ease-in-out;
}
.block_modal > a:hover {
    cursor: pointer;
    background-color: var(--main_button_hover);
}
.overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 9;
}
#fullscreen_prize_visib {
    display: none;
}
.picture_after_boxes {
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-360deg);
    transition: transform 2.5s ease-in-out;
    width: 100%;
    max-width: 320px;
}

.picture_after_boxes.active {
    transform: translate(-50%, -50%);
}
.failed_attempt > ul {
    list-style-type: none;
    text-align: center;
    margin-bottom: 45px;
    font-size: 16px;
    opacity: .7;
    line-height: 30px;
    padding: 0;
    font-family: var(--main_fonts);
}
.failed_attempt > img {
    max-width: 200px;
    width: 100%;
}
.decor_last_modal > h2 {
    font-size: 30px;
    font-family: var(--main_fonts);
}
.last_modal_button > a {
    text-decoration: none;
    background-color: var(--main_button_color);
    color: white;
    padding: 20px 100px;
    font-size: 18px;
    border-radius: 10px;
    transition: all .3s ease-in-out;
}
#visib_modal_third {
    display: none;
}
#bg_color_footer {
    background-color: var(--bg_color_footer);
}
.footer_nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    text-align: center;
    padding: 10px 0;
}
.footer_item > p {
    color: white;
    display: inline;
}
.footer_item > p:hover {
    opacity: .7;
    cursor: pointer;
}
.wrapp_overlay {
    position: relative;
    z-index: 99;
    display: none;
}
.wrapp_policy {
    background-color: white;
    border: solid 1px grey;
    border-radius: 15px;
    z-index: 999;
    padding: 20px;
    width: minmax(80vw, 50vw);
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.wrapp_policy > h2 {
    text-align: center;
    margin-top: 5px;
    margin-right: 30px;
}
.wrapp_policy > p > img {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 30px;
}
.wrapp_policy > p:hover {
    cursor: pointer;
}
.text_policy {
    padding: 20px;
    border: solid 1px grey;
    border-radius: 15px;
    height: 70vh
}
.text_policy > p {
    overflow-y: scroll;
    height: 100%;
    line-height: 1.5em;
}
#bg_faq_color {
    position: fixed;
    top: 0;
    background-color: white;
    width: 500px;
    height: 100%;
    z-index: 9999999;
    display: none;
}
.wrapp_faq {
    display: flex;
    flex-direction: column;
    padding: 50px 30px 0 45px;
    z-index: 999999999999999;
}
.wrapp_faq > h2 {
    font-size: 1.5em;
}
.faq_header {
    border-bottom: solid 1px rgba(128, 128, 128, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq_header::after {
    content: "\2295";
    font-size: 30px;
    font-family: system-ui;
    font-weight: 200;
}
.faq_header:hover {
    color: #59C7DD;
}
.faq_header > p {
    padding: 1em 1.5em 1em 0;
    margin: 0;
}
.faq_text {
    display: none;
}
.faq_text > p {
    font-size: .9rem;
    font-weight: 300;
    margin: 2em 0;
}
.focus_accordion {
    border-bottom: solid 1px #59C7DD;
    color: #59C7DD;
}
.focus_accordion::after {
    content: "\2296";
    font-size: 30px;
    font-family: system-ui;
    font-weight: 200;
}
.header_faq {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_faq > img {
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.faq_icon_open {
    width: 80px;
    position: fixed;
    bottom: 3%;
    z-index: 99;
    display: block;
    cursor: pointer;
}

.wrap {
    margin: auto;
}  
.countdown {
    margin: 0 auto;
}
.countdown .bloc-time {
    float: left;
    margin-right: 20px;
    text-align: center;
}
.countdown .bloc-time:last-child {
    margin-right: 0;
}
.countdown .count-title {
    display: block;
    margin-bottom: 15px;
    font: normal 0.94em "Lato";
    color: #1a1a1a;
    text-transform: uppercase;
}
.countdown .figure {
    position: relative;
    float: left;
    height: 42px;
    width: 34px;
    margin-right: 10px;
    background-color: var(--bg_color_timer);
    border-radius: 8px;
    -moz-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
    -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
}
.countdown .figure:last-child {
    margin-right: 0;
}
.countdown .figure > span {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 23px;
    bottom: 6px;
    font-weight: 500;
    -webkit-color: var(--color_timer);
    color: var(--color_timer);
    top: 1px;
}
.countdown .figure .top:after, .countdown .figure .bottom-back:after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 9px;
    -webkit-bottom: 9px;
    width: 100%;
    height: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.countdown .figure .top {
    z-index: 3;
    -webkit-background-color: var(--bg_color_timer);
    background-color: var(--bg_color_timer);
    transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%;
    -moz-border-radius-topleft: 10px;
    -webkit-border-top-left-radius: 10px;
    border-top-left-radius: 10px;
    -moz-border-radius-topright: 10px;
    -webkit-border-top-right-radius: 10px;
    border-top-right-radius: 10px;
    -moz-transform: perspective(200px);
    -ms-transform: perspective(200px);
    -webkit-transform: perspective(200px);
    transform: perspective(200px);
}
.countdown .figure .bottom {
    z-index: 1;
    top: 5px;
    -webkit-top: 5px;
}
.countdown .figure .bottom:before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: rgba(0, 0, 0, 0.02);
}
.countdown .figure .bottom-back {
    z-index: 2;
    top: 0;
    height: 50%;
    overflow: hidden;
    background-color: var(--bg_color_timer);
    -moz-border-radius-topleft: 10px;
    -webkit-border-top-left-radius: 10px;
    border-top-left-radius: 10px;
    -moz-border-radius-topright: 10px;
    -webkit-border-top-right-radius: 10px;
    border-top-right-radius: 10px;
}
.countdown .figure .bottom-back span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.countdown .figure .top, .countdown .figure .top-back {
    height: 52%;
    overflow: hidden;
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden!important;
}
.countdown .figure .top-back {
    z-index: 4;
    bottom: 0;
    top: 18px;
    background-color: var(--bg_color_timer);
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -moz-transform: perspective(200px) rotateX(180deg);
    -ms-transform: perspective(200px) rotateX(180deg);
    -webkit-transform: perspective(200px) rotateX(180deg);
    transform: perspective(200px) rotateX(180deg);
    -moz-border-radius-bottomleft: 10px;
    -webkit-border-bottom-left-radius: 10px;
    border-bottom-left-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    -webkit-border-bottom-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.countdown .figure .top-back span {
    position: absolute;
    top: -50%;
    left: 0;
    right: 0;
    margin: auto;
}

.like-button{
    font-size: 14px;
    background-color: transparent;
    border: none;
    opacity: 0.6;
    display: inline;
    cursor: pointer;
    margin-left: 20px;
    margin-bottom: 10px;
    color: black;
}

.like-button:hover {
    color: blue;
}


.members-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.members-popup {
    background: #fff;
    padding: 30px 20px;
    max-width: 500px;
    width: 90%;
    border-radius: 8px;
    position: relative;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.close-popup {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

.popup-content h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.popup-content .subtitle {
    font-size: 14px;
    margin-bottom: 20px;
}

.popup-content ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 20px;
}

.popup-content ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.popup-content input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.signup-btn {
    background: black;
    color: white;
    padding: 10px 20px;
    border: none;
    width: 100%;
    font-weight: bold;
    cursor: pointer;
}

.privacy-link {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: #444;
}
@media (max-width: 480px) {
    .popup-content h2 {
        font-size: 18px;
    }
    .popup-content .subtitle,
    .popup-content ul li {
        font-size: 13px;
    }
}


.product-swiper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
}

.product-swiper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.text-swiper {
    width: 100%;
    max-width: 600px;
    margin: 10px auto 10px;
    text-align: center;
    padding: 10px 0;
    position: relative;
}

.header-slide-text {
    font-size: 15px;
    font-family: serif;
    color: #222;
    margin: 0;
}

/* Пагінація */
.text-swiper .swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 8px;
}

.text-swiper .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #000;
    opacity: 0.2;
    margin: 0 4px !important;
}

.text-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}
.product-description {
    font-family: 'Georgia', serif;
    color: #222;
    padding: 15px 10px;
    text-align: left;
    line-height: 1.6;
}

.product-title {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 600;
}

.product-text {
    font-size: 14px;
    margin-bottom: 12px;
}

.product-price {
    font-size: 16px;
    font-weight: 500;
    margin-top: -18px;
}
.block_add_to_cart {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}
.product-quantity{
    margin-top: -2px;
    margin-bottom: -5px;
}
.add-to-cart-btn {
    background-color: #000;
    color: #fff;
    padding: 12px 28px;
    font-size: 14px;
    font-family: 'Georgia', serif;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    letter-spacing: 1px;
    width: 100%;
}

.add-to-cart-btn:hover {
    background-color: #222;
}



.overview-item {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin: 20px 0;
    align-items: flex-start;
}

.overview-item.reverse {
    flex-direction: row-reverse;
}

.overview-img img {
    max-width: 140px;
    height: auto;
    display: block;
}

.overview-text h3 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: bold;
}

.overview-text p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* 👉 ЗМІНЕНО — не вертикально навіть на мобільному */
@media (max-width: 768px) {
    .overview-item,
    .overview-item.reverse {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    .overview-img {
        flex: 0 0 40%;
    }

    .overview-text {
        flex: 1;
    }

    .overview-img img {
        width: 100%;
        height: auto;
    }

    .overview-text h3,
    .overview-text p {
        text-align: left;
    }
}



/*test of obstant*/
.product-overview {
    font-family: "Big Caslon", serif;
    margin-top: 30px;
    padding-top: 20px;
}

.overview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    font-family: "Big Caslon", serif;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
}

.arrow-icon {
    display: inline-flex;
    transition: transform 0.3s ease;
}

.overview-header.open .arrow-icon {
    transform: rotate(-180deg);
}

.productDescription_expandChevron polygon {
    fill: #000;
}



.overview-header span {
    font-family: "Big Caslon", serif;
}

.arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.overview-content {
    margin-top: 20px;
}

.overview-wrapped {
    overflow: hidden;
    margin-bottom: 30px;
    font-family: "Big Caslon", serif;
    font-size: 14px;
    line-height: 1.6;
}

.overview-wrapped h3 {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}

.overview-wrapped p {
    text-align: justify;
}

.float-img {
    float: right;
    margin-left: 20px;
    width: 150px;
    max-width: 40%;
}

.float-img.left {
    float: left;
    margin-right: 20px;
    margin-left: 0;
}


/*footer*/
.footer-creed {
    background-color: white;
    padding: 40px 20px 20px;
    font-family: "Big Caslon", serif;
    font-size: 14px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.footer-payment .payment-title {
    font-weight: 400;
    margin-bottom: 16px;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.payment-icons img {
    height: 32px;
    object-fit: contain;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 6px;
    background-color: #fff;
}

.footer-bottom {
    color: #444;
    font-size: 13px;
}
.eastendFooter_paySecurelyIcons {
    margin-top: 40px;
    text-align: center;
    font-family: 'Big Caslon', serif;
}

.eastendFooter_paySecurelyTitle {
    font-size: 18px;
    font-weight: 400;
    color: #2b2b2b;
    margin-bottom: 16px;
}

.footerPaymentIcons {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px 20px;
    max-width: 600px;
    justify-content: center;
}

.footerPaymentIcons_listItem {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footerPaymentIcons_listItem svg {
    max-width: 60px;
    height: 40px;
    display: block;
}


.checkout-steps-progress,
.order-summary,
.divider-line,
.shipping-title,
.shipping-address,
.step-checkout{
    display: none;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
    margin-top: 10px;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 16px;
    height: 16px;
}
.checkbox-label-text{
  margin-top: -10px;
}

.thank-you-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
}

.thank-you-image {
    max-width: 300px;
    width: 80%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 24px;
}

.thank-you-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
}

.thank-you-text {
    font-size: 18px;
    color: #444;
    max-width: 500px;
}
.product-note {
    font-size: 14px;
    color: #777;
    margin-top: 6px;
    line-height: 1.4;
}
#loader {
    height: 100vh;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: white;
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    flex-direction: column;
    display: none; /* по умолчанию скрыт */
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top: 4px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.product-extra-info {
    font-size: 13px;
    color: #555;
    margin-top: -20px;
    text-align: right;
    font-style: italic;
}
.apple-price {
    font-family: "SF Pro", serif;
}