/* =========================
   GLOBAL
========================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;700;900&display=swap');

:root {
    --tov-main-color: #b55400;
    --tov-secondary-color: #b55400;
    --tov-third-color: #b55400;
    --tov-third-color-text: #b55400;
}

html {
    scroll-behavior: smooth;
    background: #ffffff;
}

body {
    font-family: 'Montserrat', sans-serif !important;
    padding-bottom: 90px;
    background: #ffffff;
    color: #1a1a1a;
}

/* =========================
   STICKY ORDER BUTTON
========================= */

.sticky-order-btn {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;

    background: linear-gradient(180deg, #ffb73b 0%, #ff2525 74%);
    color: #fff;
    text-align: center;
    padding: 18px 10px;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    z-index: 9999;

    box-shadow: 0 -3px 10px rgba(0, 0, 0, .25);
    animation: pulseBtn 1.5s infinite;
}

.sticky-order-btn:hover {
    color: #fff;
}

@keyframes pulseBtn {
    0% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.03);
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}

/* =========================
   IMAGE STYLES
========================= */

img {
    border-radius: 18px;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.14),
        0 2px 8px rgba(0, 0, 0, 0.08);

    transition: .3s ease;
    display: block;
    max-width: 100%;
}

img:hover {
    transform: translateY(-2px) scale(1.01);

    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.18),
        0 4px 14px rgba(0, 0, 0, 0.10);
}

.featured-media img {
    border-radius: 26px;
}

.presentation img {
    border-radius: 22px;
    margin: 14px auto;
    display: block;
    margin-bottom: 30px;
}

.top-img img {
    border-radius: 20px;

    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.12);
}

.user-box img {
    border-radius: 50% !important;

    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.18);
}

/* =========================
   NOW IN SITE
========================= */

.now-in-site {
    font-size: 13px;
    padding: 10px;
    color: #1a1a1a;

    position: fixed;
    z-index: 400;
    right: 0;
    top: 200px;

    background-color: #ffffff;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);

    border-radius: 5px;
    font-weight: 500;
}

.now-in-site-icon {
    width: 30px;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.now-in-site-icon svg {
    width: 100%;
    height: auto;
}

.now-in-site-content {
    display: flex;
    align-items: center;
    gap: 4px;
}

#visitorCount {
    font-size: 18px;
    font-weight: 500;
}

.now-in-site-title {
    font-weight: 500;
}

/* =========================
   GOOGLE RATING
========================= */

.google-rating-block {
    max-width: 560px;
    width: 100%;

    background: #ffffff;

    border-radius: 24px;

    padding: 28px;

    color: #1a1a1a;

    box-sizing: border-box;

    border: 1px solid rgba(0, 0, 0, 0.10);

    display: flex;
    flex-direction: column;
    gap: 22px;

    margin: 25px auto 30px;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.08);
}

.top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.left-side {
    display: flex;
    align-items: center;
    gap: 16px;
}

.google-logo {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

.info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    margin: 25px 0 20px 0;
    color: #1a1a1a;
}

.verified {
    display: flex;
    align-items: center;
    gap: 6px;

    font-size: 14px;
    color: #666666;
}

.rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;

    flex-shrink: 0;
}

.score {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: #1a1a1a;
}

.from {
    color: #999999;
    font-size: 16px;
}

.progress-bar {
    width: 100%;
    height: 8px;

    background: rgba(0, 0, 0, 0.10);

    border-radius: 20px;
    overflow: hidden;
}

.progress {
    width: 94%;
    height: 100%;

    background: #00ff7b;

    border-radius: 20px;
}

.bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.orders {
    color: #666666;
    font-size: 17px;
}

.happy {
    color: #00ff7b;
    font-weight: 700;
    font-size: 17px;
}

/* =========================
   REVIEWS SECTION
========================= */

.reviews-chat-section {
    width: 100%;
    max-width: 470px;

    margin: auto;

    background: radial-gradient(circle at top, rgba(3, 10, 28, 0.98), rgba(0, 0, 0, 1));

    border-radius: 28px;

    overflow: hidden;

    padding-top: 30px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
}

.reviews-header {
    text-align: center;
    color: #f3f8ff;

    padding: 0 20px 25px;
}

.reviews-header h2 {
    margin: 0;

    font-size: 40px;
    font-weight: 800;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
    color: #f3f8ff;
}

.rating-text {
    margin-top: 20px;
    font-size: 20px;
    color: #f3f8ff;
}

.stars {
    color: #ffe14a;
}

.recommend {
    margin-top: 10px;
    font-size: 18px;
    color: #c7d6f4;
}

.rating-line {
    width: 85%;
    height: 10px;

    background: rgba(255, 255, 255, 0.12);

    border-radius: 20px;

    overflow: hidden;

    margin: 18px auto 0;
}

.rating-fill {
    width: 98%;
    height: 100%;
    background: #00d95f;
}

/* =========================
   CHAT
========================= */

.chat-wrapper {
    background: linear-gradient(180deg, rgba(4, 7, 18, 0.96), rgba(8, 17, 37, 0.98));

    border-radius: 28px 28px 0 0;

    overflow: hidden;

    position: relative;

    min-height: 650px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35);
}

.chat-top {
    height: 88px;

    background: rgba(255, 255, 255, 0.05);

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 14px;
}

.back-btn {
    color: #ffffff;

    font-size: 34px;
    font-weight: bold;
}

.user-box {
    display: flex;
    align-items: center;
    gap: 12px;

    flex: 1;

    margin-left: 10px;
}

.user-box img {
    width: 52px;
    height: 52px;

    object-fit: cover;
}

.name {
    font-size: 18px;
    font-weight: 700;
    color: #f3f8ff;
}

.online {
    font-size: 14px;
    color: #aac1e6;
}

.chat-icons {
    display: flex;
    gap: 14px;

    font-size: 28px;

    color: #ffffff;
}

.messages {
    padding: 20px 12px 110px;

    background: rgba(255, 255, 255, 0.04);

    min-height: 520px;
}

.date {
    width: fit-content;

    margin: 0 auto 20px;

    background: rgba(255, 255, 255, 0.08);

    padding: 8px 14px;

    border-radius: 12px;

    font-size: 14px;
    color: #aac1e6;
}

.message {
    max-width: 78%;

    padding: 16px;

    border-radius: 14px;

    margin-bottom: 18px;

    font-size: 17px;
    line-height: 1.35;

    position: relative;
    color: #f3f8ff;
}

.message.support {
    background: rgba(255, 255, 255, 0.10);
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.message.user {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.time {
    text-align: right;

    margin-top: 10px;

    color: #aab4d1;

    font-size: 13px;
}

.reviews-prev,
.reviews-next {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffb300;
    color: #061422;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(255, 179, 0, 0.24);
}

.reviews-prev:hover,
.reviews-next:hover {
    opacity: 0.95;
}

.reviews-chat-section .reviews-header,
.reviews-chat-section .reviews-header h2,
.reviews-chat-section .rating-text,
.reviews-chat-section .recommend,
.reviews-chat-section .name,
.reviews-chat-section .online,
.reviews-chat-section .time,
.reviews-chat-section .message {
    color: #f3f8ff !important;
}

/* =========================
   MOBILE
========================= */

@media(max-width:480px) {

    .google-rating-block {
        padding: 20px;
        gap: 18px;
        border-radius: 18px;
    }

    .top-row {
        align-items: flex-start;
    }

    .title {
        font-size: 22px;
    }

    .score {
        font-size: 34px;
    }

    .from {
        font-size: 14px;
    }

    .bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .orders,
    .happy {
        font-size: 15px;
    }

    .reviews-header h2 {
        font-size: 28px;
    }

    .rating-text {
        font-size: 17px;
    }

    .recommend {
        font-size: 15px;
    }

    .message {
        font-size: 15px;
    }

    .chat-wrapper {
        min-height: 620px;
    }

    img {
        border-radius: 14px;
    }

    .featured-media img {
        border-radius: 20px;
    }

    .presentation img {
        border-radius: 18px;
    }

    .sticky-order-btn {
        font-size: 20px;
        padding: 16px 10px;
    }
}

/* =========================
   SITE LIGHT THEME
========================= */

.content-wrap,
.top-card-wrap,
.item-card,
.header,
.pricing-block,
.contact-form,
.oreder-form,
.presentation,
.presentation-wrap,
.order-step,
.trust-block,
.discount-modal-content,
.discounted-price-info,
.discounted-price-info-card,
.benefits_list,
.benefit_item,
.footer,
.footer-link,
.swiper,
section,
article,
.main,
.container-body {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.top-card-wrap,
.item-card,
.presentation,
.presentation-wrap,
.reviews-chat-section,
.order-step {
    margin-bottom: 30px;
}

.item-card,
.pricing-block,
.contact-form,
.oreder-form,
.order-step,
.trust-block,
.discount-modal-content {
    background: #ffffff;
}

body,
.content-wrap,
.item-card,
.header,
.top-card-wrap,
.pricing-block,
.contact-form,
.oreder-form,
.presentation,
.presentation-wrap,
.order-step,
.trust-block,
.discount-modal-content,
.discounted-price-info,
.discounted-price-info-card,
.benefit_item,
.footer,
.footer-link,
button,
input,
textarea,
select {
    color: #1a1a1a;
}

a,
.footer-link {
    color: #0066cc;
}

a:hover,
.footer-link:hover,
.discount-modal-use:hover,
.big-button:hover,
.button-submit:hover,
.reviews-prev:hover,
.reviews-next:hover {
    opacity: 0.95;
}

.trust-block,
.discount-modal-content,
.order-step {
    border: 1px solid rgba(0, 0, 0, 0.10);
}

.benefits_list {
    margin: 25px auto;
    padding: 20px;
    margin-bottom: 12px;
}

.header {
    margin: 30px 0 20px 0;
}

.pricing-block {
    display: inline-flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 18px;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

.pricing-block .old-price,
.pricing-block .new-price {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.pricing-block .old-price {
    text-align: left;
    align-self: flex-end;
}

.pricing-block .old-price span,
.pricing-block .old-price small {
    display: block;
    color: #777777;
}

.pricing-block .old-price strong {
    font-size: 1.6em;
    font-weight: 700;
    color: #7f7f7f;
    text-decoration: line-through;
    display: inline-block;
    white-space: nowrap;
    margin-top: 5px;
}

.pricing-block .new-price span {
    display: block;
    color: #111111;
    font-size: 16px;
    margin-bottom: 8px;
}

.pricing-block .new-price strong {
    font-size: 3.4em;
    font-weight: 900;
    color: #111111;
    line-height: 0.9;
}

.pricing-block .new-price small {
    color: #111111;
    font-size: 1.15em;
    margin-left: 10px;
}

.promo-label {
    display: block;
    color: #ff5722 !important;
    font-size: 1.1em;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, rgba(254, 106, 61, 0.1), rgba(254, 106, 61, 0.05));
    padding: 10px 16px;
    border-radius: 10px;
    border-left: 5px solid #ff5722;
    margin-bottom: 14px;
    box-shadow: inset 0 0 15px rgba(254, 106, 61, 0.05);
}

.new-price strong {
    color: #fe6a3d !important;
    font-size: 1.5em;
    font-weight: 900;
    text-shadow: none;
}

.old-price span,
.new-price span,
.old-price small,
.new-price small,
.trust-block__rating-desc,
.trust-block__count,
.trust-block__last-order,
.time,
.orders,
.from,
.verified,
.recommend,
.rating-text,
.date,
.message.support,
.message.user {
    color: #ffffff;
}

.trust-block__score,
.product-title,
.title,
.reviews-header h2,
.rating,
.score,
.message,
.discounted-price-info,
.discounted-price-info-card {
    color: #1a1a1a;
}

.discounted-price-info,
.discounted-price-info-card {
    background: #f0f8f4 !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

.order-step,
.order-step .step-item,
.order-step .item-top,
.order-step .item-botton {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.10) !important;
}

.order-step {
    margin: 20px !important;
}

.order-step .step-item {
    border-radius: 22px !important;
    overflow: hidden !important;
    margin-bottom: 18px !important;
    background: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.10) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.order-step .item-top {
    display: flex !important;
    gap: 14px !important;
    padding: 18px !important;
    align-items: center !important;
    background: #f9f9f9 !important;
}

.order-step .item-botton {
    padding: 20px !important;
    border-radius: 0 0 22px 22px !important;
    color: #333333 !important;
    background: #ffffff !important;
}

.order-step .top-img {
    background: #f5f5f5;
    padding: 14px;
    border-radius: 18px;
}

.order-step .top-img img {
    display: block;
    border-radius: 18px;
}

.order-step-title,
.order-step .order-color {
    color: #1a1a1a;
}

.order-step .item-top .top-text b {
    color: #1a1a1a;
}

.order-step .item-botton,
.order-step .order-color {
    color: #333333;
}

.chat-input {
    background: #f5f5f5;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
}

.chat-input input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #333333;
    font-size: 16px;
}

.chat-input span {
    font-size: 20px;
    cursor: pointer;
    color: #666666;
}

/* Кнопка відправки */
.send-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #666666;
}

.send-btn:hover {
    background: rgba(0, 0, 0, 0.15);
}

.discount-modal-use,
.big-button,
.button-submit {
    background: linear-gradient(180deg, #35d18b 0%, #0ba371 100%);
    color: #fff;
    border: none;
}

input,
textarea,
select {
    background: #f5f5f5 !important;
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
    color: #1a1a1a !important;
}

::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.5) !important;
}

:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.5) !important;
}

::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

/* =========================
   FORM ELEMENTS LIGHT THEME
========================= */

#phone,
.wpcf7-form-control {
    background: #f5f5f5 !important;
    color: #1a1a1a !important;
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
}
