* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    /* --- АВТОМОБІЛЬНА ПАЛІТРА ПІД ФОТО --- */
    --main-bg: #070a13; /* Глибокий темно-синій/чорний фон */
    --surface-bg: #111625; /* Фон карток та блоків */
    --primary-color: #FFFFFF; /* Білий текст для заголовків */
    --accent-orange: #FF5A00; /* Яскраво-помаранчевий (лопаті вентилятора) */
    --accent-blue: #00D2FF; /* Неоновий блакитний (як рамки на 1-му фото) */
    --text-color: #DDE4F4; /* Зробив текст значно світлішим для кращої читабельності */
    
    /* ШРИФТИ */
    --primary-font: "Roboto", sans-serif; 
}

body {
    font-family: var(--primary-font);
    background-color: #000000; 
    margin: 0;
    color: var(--text-color);
    font-size: 18px; /* Збільшив базовий розмір шрифту */
    font-weight: 500; /* Зробив базовий текст трохи жирнішим */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 900; /* Максимальна жирність для всіх заголовків */
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: unset;
    outline: none;
}

img, video {
    width: 100%;
    display: block;
}

input, button, select {
    font: inherit;
    -webkit-appearance: none;
    border-radius: 0px;
}

.main-wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 480px; 
    background: var(--main-bg); 
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.9);
}

.container { padding: 0 15px; }
.section { padding: 25px 0 !important; }

/* --- ТИПОГРАФІКА ЗАГОЛОВКІВ --- */
.main-title {
    color: var(--primary-color);
    font-size: 36px; /* Збільшив заголовок */
    text-align: center;
    text-transform: uppercase;
    line-height: 1.15;
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

.section-title {
    color: var(--primary-color);
    font-size: 32px; /* Збільшив */
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* --- ПРЕМІАЛЬНИЙ БЛОК ЦІНИ --- */
.premium-price-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background: rgba(6, 17, 36, 0.8);
    border-radius: 12px;
    padding: 22px 10px; /* Трохи збільшив відступи */
    margin: 0 15px 35px;
    border: 2px solid var(--accent-blue);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.3), inset 0 0 15px rgba(0, 210, 255, 0.15);
}

/* Ярлик знижки */
.discount-badge {
    position: absolute;
    top: -18px;
    right: 15px;
    background: var(--accent-orange); 
    color: #ffffff;
    font-weight: 900;
    font-size: 16px; /* Збільшив */
    padding: 8px 18px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(255, 90, 0, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid #FF8C42;
}

.price-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 45%;
}

.premium-price-box .label {
    font-size: 15px; /* Збільшив */
    color: var(--accent-blue);
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 800; /* Жирніше */
    letter-spacing: 0.5px;
}

.old-price-col .old {
    color: #8C9BBF; /* Зробив трохи світлішим для читабельності */
    font-weight: 800;
    font-size: 26px; /* Збільшив */
    text-decoration: line-through;
    text-decoration-color: #FF3333; 
    text-decoration-thickness: 3px; /* Товстіша лінія перекреслення */
}

.new-price-col .new {
    color: var(--primary-color);
    font-weight: 900;
    font-size: 42px; /* Збільшив і зробив акцентним */
    line-height: 1;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.premium-price-box .divider {
    height: 70px;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--accent-blue), transparent); 
}

/* --- КНОПКА ЗАМОВЛЕННЯ --- */
.main-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    padding: 20px 10px; /* Збільшив клікабельну зону */
    margin: 10px auto 25px;
    background: linear-gradient(135deg, #FF7B00 0%, #D64200 100%); 
    border: 2px solid #FFA64D;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 90, 0, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: btnPulse 2.5s infinite;
}

.btn-main-text {
    font-size: 26px !important; /* Значно більший текст */
    font-weight: 900 !important;
    color: #FFFFFF !important;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
}

.btn-subtext-form {
    font-size: 16px !important; /* Збільшив підзаголовок кнопки */
    font-weight: 700 !important; /* Жирніший */
    color: #FFFFFF !important; 
    margin-top: 8px !important;
    text-align: center;
}

.main-btn:active {
    transform: scale(0.96);
    box-shadow: 0 4px 15px rgba(255, 90, 0, 0.3);
}

@keyframes btnPulse {
    0% { transform: scale(1); box-shadow: 0 8px 20px rgba(255, 90, 0, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 12px 30px rgba(255, 90, 0, 0.7); }
    100% { transform: scale(1); box-shadow: 0 8px 20px rgba(255, 90, 0, 0.4); }
}

/* --- КАРТИНКИ (ОПИС ТОВАРУ) --- */
.description-item {
    width: 100%;
    margin-bottom: 25px;
    padding: 0; /* Убрали боковые отступы (было 0 15px) */
}

.description-item img {
    border-radius: 12px; /* Чуть уменьшил скругление, так как картинка стала шире */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
    border: 1px solid #1A2235;
    width: 100%;
}

/* --- ФОРМА ЗАМОВЛЕННЯ --- */
.order-section-new {
    background: linear-gradient(to bottom, #070a13, #0b101d);
}

.form-main-title {
    font-size: 32px; /* Великий заголовок форми */
    font-weight: 900;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 25px; 
    text-transform: uppercase;
}

.order-card {
    background: var(--surface-bg);
    border-radius: 16px;
    padding: 35px 20px;
    margin: 0 auto;
    max-width: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    border: 1px solid #1A2235;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    font-size: 18px; /* Збільшив лейбли */
    font-weight: 800; /* Жирніші */
    color: #FFFFFF; /* Білі для 100% контрасту */
    margin-bottom: 12px;
    padding-left: 5px;
}

.custom-input {
    width: 100%;
    background-color: #04060A; 
    border: 1px solid #232D42;
    border-radius: 10px;
    padding: 20px 15px; /* Зробив поля вводу об'ємнішими */
    font-size: 20px; /* Великий текст в інпуті */
    font-weight: 700;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.custom-input::placeholder {
    color: #6C7A9C;
    font-weight: 500;
}

.custom-input:focus {
    outline: none;
    border-color: var(--accent-blue); 
    background-color: #070A13;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
}

.form-btn {
    width: 100% !important; 
    margin-top: 20px !important;
    margin-bottom: 0 !important;
}

/* --- КРОКИ "ЯК ЗАМОВИТИ" --- */
.steps { 
    padding: 25px 20px; 
    background: var(--surface-bg);
    margin: 0 15px;
    border-radius: 16px;
    border: 1px solid #1A2235;
}

.step {
    display: flex;
    align-items: flex-start;
    padding-bottom: 30px;
    position: relative;
    gap: 20px;
}

.step-number {
    width: 44px; /* Збільшив кружечок з цифрою */
    height: 44px;
    background: var(--accent-orange);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 44px;
    font-weight: 900;
    font-size: 22px; /* Велика цифра */
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(255, 90, 0, 0.4);
    border: 2px solid #FFA64D;
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 21px;
    top: 44px;
    width: 3px; /* Товстіша лінія */
    height: calc(100% - 44px);
    background-color: #232D42;
    z-index: 0;
}

.step-content h3 {
    margin: 0 0 10px;
    font-size: 22px; /* Збільшив заголовок кроку */
    font-weight: 800;
    color: var(--primary-color);
}

.step-content p {
    font-size: 17px; /* Чіткий читабельний текст */
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
}

/* --- БІГУЧА СТРІЧКА --- */
@keyframes marqueeAnimation {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.marquee-container { overflow: hidden; }

.premium-marquee {
    background-color: #FF5A00; 
    color: #FFFFFF; 
    padding: 12px 0;
    box-shadow: 0 4px 15px rgba(255, 90, 0, 0.3);
    position: relative;
    z-index: 10;
}

.premium-marquee .marquee-text {
    font-size: 18px; /* Збільшив текст */
    text-transform: uppercase;
    font-weight: 800; /* Більш жирний */
    letter-spacing: 1px;
    animation: marqueeAnimation 12s linear infinite; 
}

.premium-marquee .highlight {
    color: #FFFFFF; 
    font-weight: 900;
    font-size: 20px; /* Ще більший акцент */
    background: #000000;
    padding: 3px 10px;
    border-radius: 6px;
    margin: 0 6px;
}

/* --- ОРИГІНАЛЬНІ ВІДГУКИ WTSP (БЕЗ ЗМІН) --- */
.reviews { padding: 30px 0; padding-top: 10px !important; }
.wtsp_item { max-width: 410px; min-height: 770px; margin: 0 auto; background: url(../images/ADhTyuE4T3ar_1.jpg) 50% 0% repeat; font-family: Arial, Helvetica, sans-serif; position: relative; overflow: hidden; border-radius: 20px 20px 20px 20px; border: 1px solid #a2a2a2; box-shadow: 1px 0px 2px #909090; width: 100% !important; height: auto !important; display: flex; flex-direction: column; padding-bottom: 70px; }
.wtsp_item .info { background: #ffffff url(../images/XS6fbttaUIgm_1.png) 3px 50% no-repeat; padding: 16px 110px 13px 50px; box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.35); position: relative; z-index: 2; border-radius: 20px 20px 0px 0px; text-align: left; background-size: contain; }
.wtsp_item .info>img { float: left; border-radius: 50%; width: 42px; height: 42px; object-fit: cover; border: 1px solid #0f3a33; }
.wtsp_item .info .text { overflow: hidden; padding-left: 8px; color: #333; }
.wtsp_item .info .text>p { font-size: 16px; line-height: 22px; font-weight: 700; margin: 0; }
.wtsp_item .info .text>small { font-size: 13px; line-height: 18px; display: block; }
.clearfix:after { content: ""; display: block; clear: both; }
.wtsp_item .date { text-align: center; margin-top: 10px; }
.wtsp_item .date>span { display: inline-block; vertical-align: top; background: #d4ebf3; text-transform: uppercase; font-size: 12px; line-height: 28px; color: #3f5250; padding: 0 8px; border-radius: 7px; box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2); }
.wtsp_item .message_container { margin-top: 10px; padding: 0 12px; }
.wtsp_item .message { display: inline-block; max-width: 295px; min-width: 70px; padding: 6px 10px; position: relative; font-size: 18px; line-height: 22px; color: #212121; box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25); margin-bottom: 10px; }
.wtsp_item .message.client { background: #fff; border-radius: 0 6px 6px 6px; }
.wtsp_item .message.client:before { content: ""; width: 0; height: 0; border-style: solid; border-width: 0 8px 8px 0; border-color: transparent #fff transparent transparent; position: absolute; top: 0; left: -6px; }
.wtsp_item .message>p { margin-bottom: 5px; text-align: left; }
.wtsp_item .message>img { display: block; margin: 6px auto; border-radius: 4px; }
.wtsp_item .message .time { text-align: right; font-size: 14px; line-height: 15px; color: #989898; padding: 0 5px; }
.wtsp_item .message:last-child { margin-bottom: 0; }
.wtsp_item .message.author { background: #c8e2fd; border-radius: 10px 0 10px 10px; padding: 6px 10px; float: right; }
.wtsp_item .message.author:before { content: ""; width: 0; height: 0; border-style: solid; border-width: 8px 8px 0 0; border-color: #c8e2fd transparent transparent transparent; position: absolute; top: 0; right: -6px; }
.wtsp_item .message.author .time { padding: 0; }
.wtsp_item .message.author .time:after { content: ""; width: 18px; height: 12px; display: inline-block; vertical-align: middle; margin: -2px 0 0 4px; }
.wtsp_item:after { content: ""; width: 390px; height: 57px; background: url(../images/LKvurt5AgpH6_1.png) 50% 50% no-repeat; position: absolute; left: 50%; transform: translateX(-50%); bottom: 7px; background-size: contain; }
.wtsp_rev .owl-prev, .wtsp_rev .owl-next { width: 47px; height: 47px; background: #000000 url(../images/g9nXtD5LDSge_1.jpg) no-repeat; position: absolute; top: 50%; margin-top: -23px; }
.wtsp_rev .owl-prev { background-position: left center; -webkit-border-radius: 0 6px 6px 0; -moz-border-radius: 0 6px 6px 0; border-radius: 0 6px 6px 0; left: -15px; }
.wtsp_rev .owl-next { background-position: right center; -webkit-border-radius: 6px 0 0 6px; -moz-border-radius: 6px 0 0 6px; border-radius: 6px 0 0 6px; right: -15px; }
.owl-carousel .owl-stage-outer { position: relative; overflow: hidden; -webkit-transform: translate3d(0, 0, 0); }
.no-js .owl-carousel, .owl-carousel.owl-loaded { display: block; position: relative; }
.owl-carousel .owl-item { min-height: 1px; float: left; -webkit-backface-visibility: hidden; -webkit-touch-callout: none; -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; -ms-backface-visibility: hidden; -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); -webkit-tap-highlight-color: transparent; position: relative; }
.wtsp_rev .owl-stage { display: flex !important; align-items: stretch !important; }
.wtsp_rev .owl-item { display: flex !important; float: none !important; }

/* --- ФУТЕР --- */
.footer {
    background: #04060A;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #1A2235;
    margin-top: 20px;
}
.policy {
    display: inline-block;
    font-size: 15px; /* Збільшив посилання в футері */
    font-weight: 600;
    color: #8C9BBF;
    text-decoration: underline;
    margin: 8px 10px;
    transition: 0.3s;
}
.policy:hover { color: var(--primary-color); }

/* --- СТИЛІ ДЛЯ ВИПАДАЮЧИХ СПИСКІВ (NP Select) --- */
.np-select.open { z-index: 7 !important; }
.np-select { width: 100% !important; height: unset !important; }
.np-select__input { border: 1px solid #232D42 !important; background: #04060A; color: #FFF; font-size: 18px !important; font-weight: 600 !important; }
.np-select__button { padding: .8rem 1rem !important; border-radius: 0px !important; height: unset !important; min-height: calc(1.5em + 1rem + 2px) !important; line-height: 1.25 !important; border: 1px solid #232D42 !important; background: #04060A; color: #FFF; font-size: 18px !important;}
.np-select__button .text { display: block !important; text-align: left !important; font-size: 18px !important; font-weight: 600 !important; overflow: hidden; }

/* Карусель Slick-dots */
.slick-dots { left: 0; }
.slick-dots li button:before { font-size: 12px; color: var(--accent-orange); }
.slick-next:before, .slick-prev:before { font-size: 27px; color: var(--accent-orange); }
.slick-next { right: -3px; }
.slick-prev { left: -8px; z-index: 2; }