/* ============================================
   СТИЛІ ДЛЯ СТОРІНКИ ЧИЩЕННЯ
   ============================================ */

/* ========== ЗАГОЛОВКИ ========== */
.chischennya-page h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1a2c3e;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.chischennya-page h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a2c3e;
    margin: 40px 0 20px 0;
    padding: 12px 0 12px 18px;
    border-left: 4px solid #1a73e8;
    line-height: 1.3;
    background: #fafafa;
    border-radius: 0 8px 8px 0;
}

.chischennya-page h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a2c3e;
    margin: 25px 0 15px 0;
}

/* ============================================
   ТАБЛИЦІ (ЗАТЕМНЕНА ШАПКА + АДАПТАЦІЯ)
   ============================================ */

.chischennya-page .table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.chischennya-page table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    font-size: 15px;
    border-radius: 12px;
    overflow: hidden;
}

/* ===== ВСІ КОМІРКИ — ОДНАКОВІ ЛІНІЇ ===== */
.chischennya-page table td,
.chischennya-page table th {
    border: 1px solid #d0d7de !important;
    padding: 12px 18px;
}

/* ===== ШАПКА (ЗАТЕМНЕНА) ===== */
.chischennya-page table thead th {
    background: #b0bec5 !important;
    color: #1a2c3e !important;
    font-weight: 700;
    font-size: 15px;
    text-align: left;
}

/* ===== ПРИБИРАЄМО ЗОВНІШНІ РАМКИ ===== */
.chischennya-page table td:first-child,
.chischennya-page table th:first-child {
    border-left: none !important;
}

.chischennya-page table td:last-child,
.chischennya-page table th:last-child {
    border-right: none !important;
}

.chischennya-page table tr:last-child td,
.chischennya-page table tr:last-child th {
    border-bottom: none !important;
}

/* ===== ТІЛО ТАБЛИЦІ ===== */
.chischennya-page table tbody td {
    color: #333;
    font-weight: normal !important;
}

/* ===== ЧЕРГУВАННЯ ФОНУ ===== */
.chischennya-page table tbody tr:nth-child(odd) td {
    background: #ffffff !important;
}

.chischennya-page table tbody tr:nth-child(even) td {
    background: #f8f9fa !important;
}

.chischennya-page table tbody tr:hover td {
    background: #f0f2f5 !important;
}

.chischennya-page table .price-highlight {
    font-weight: 700;
}

/* ============================================
   АДАПТАЦІЯ ДЛЯ МОБІЛЬНИХ
   ============================================ */
@media (max-width: 768px) {
    .chischennya-page h1 {
        font-size: 26px;
    }
    
    .chischennya-page h2 {
        font-size: 22px;
        margin: 30px 0 15px 0;
        padding: 10px 0 10px 14px;
    }
    
    .chischennya-page h3 {
        font-size: 18px;
    }
    
    .chischennya-page .table-wrapper {
        border-radius: 8px;
    }
    
    .chischennya-page table {
        font-size: 13px;
        min-width: 480px;
    }
    
    .chischennya-page table td,
    .chischennya-page table th {
        padding: 10px 12px !important;
        font-size: 12px !important;
    }
}

@media (max-width: 480px) {
    .chischennya-page table {
        min-width: 360px;
        font-size: 12px;
    }
    
    .chischennya-page table td,
    .chischennya-page table th {
        padding: 8px 10px !important;
        font-size: 11px !important;
    }
}

/* ============================================
   БЛОК ПЕРЕВАГ ДЛЯ ЧИЩЕННЯ
   ============================================ */
.chischennya-benefits {
    margin-top: -60px;
    gap: 15px;
    display: flex;
    flex-direction: column;
}

.chischennya-benefits .benefit-item {
    padding: 16px 22px;
    background: #f8f9fa;
    border-radius: 16px;
    border-left: 4px solid #1a73e8;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.chischennya-benefits .benefit-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.15);
}

.chischennya-benefits .benefit-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.chischennya-benefits .benefit-item h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: #1a2c3e;
}

.chischennya-benefits .benefit-item p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    color: #444;
}

.chischennya-benefits .benefit-item p strong {
    color: #1a2c3e;
}

/* ===== АДАПТАЦІЯ ДЛЯ МОБІЛЬНИХ ===== */
@media (max-width: 768px) {
    .chischennya-benefits {
        margin-top: 0;
        gap: 12px;
    }
    
    .chischennya-benefits .benefit-item {
        padding: 14px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .chischennya-benefits .benefit-item h3 {
        font-size: 16px;
    }
    
    .chischennya-benefits .benefit-item p {
        font-size: 14px;
    }
}

/* ============================================
   БЛОК "ЗАПРАВКА ФРЕОНОМ" (ПРОДАЮЧИЙ ТЕКСТ)
   ============================================ */

.refill-block {
    margin: 30px 0 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ===== ВСТУП ===== */
.refill-block__intro {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f8f9fa;
    padding: 18px 22px;
    border-radius: 16px;
    border-left: 4px solid #1a73e8;
}

.refill-block__icon {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.refill-block__intro p {
    font-size: 16px;
    line-height: 1.7;
    color: #2d2d2d;
    margin: 0;
}

.refill-block__intro p strong {
    color: #1a2c3e;
}

/* ===== ПРОБЛЕМА ===== */
.refill-block__problem {
    background: #e8f0fe;
    padding: 16px 22px;
    border-radius: 12px;
    border: 1px solid #d2e3fc;
}

.refill-block__subtitle {
    font-size: 15px;
    font-weight: 700;
    color: #1a2c3e;
    margin: 0 0 6px 0;
}

.refill-block__problem p {
    font-size: 15px;
    line-height: 1.6;
    color: #2d2d2d;
    margin: 0;
}

.refill-block__problem p strong {
    color: #1a73e8;
}

/* ===== РІШЕННЯ ===== */
.refill-block__solution {
    background: #e8f0fe;
    padding: 16px 22px;
    border-radius: 12px;
    border: 1px solid #d2e3fc;
}

.refill-block__solution p {
    font-size: 15px;
    line-height: 1.6;
    color: #2d2d2d;
    margin: 0 0 8px 0;
}

.refill-block__solution p strong {
    color: #1a73e8;
}

.refill-block__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.refill-block__list li {
    font-size: 15px;
    line-height: 1.5;
    color: #1a2c3e;
    padding: 4px 0;
}

.refill-block__list li strong {
    color: #1a73e8;
}

/* ===== РЕЗУЛЬТАТ ===== */
.refill-block__result {
    background: #e8f0fe;
    padding: 16px 22px;
    border-radius: 12px;
    border: 1px solid #d2e3fc;
}

.refill-block__result p {
    font-size: 15px;
    line-height: 1.6;
    color: #2d2d2d;
    margin: 0;
}

.refill-block__result p strong {
    color: #1a73e8;
}

/* ============================================
   КНОПКА "ЗАМОВИТИ ПОСЛУГУ" (СИНЯ)
   ============================================ */

.btn-order {
    display: inline-block;
    padding: 12px 32px;
    background: #1a73e8;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 48px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

.btn-order:hover {
    background: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(26, 115, 232, 0.4);
}

.btn-order:active {
    transform: scale(0.96);
}

/* ============================================
   АДАПТАЦІЯ ДЛЯ МОБІЛЬНИХ
   ============================================ */
@media (max-width: 768px) {
    .refill-block__intro {
        padding: 14px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .refill-block__intro p {
        font-size: 15px;
    }
    
    .refill-block__problem,
    .refill-block__solution,
    .refill-block__result {
        padding: 14px 16px;
    }
    
    .refill-block__problem p,
    .refill-block__solution p,
    .refill-block__result p,
    .refill-block__list li {
        font-size: 14px;
    }
    
    .btn-order {
        padding: 10px 24px;
        font-size: 14px;
        display: block;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .refill-block__intro p {
        font-size: 14px;
    }
    
    .refill-block__problem p,
    .refill-block__solution p,
    .refill-block__result p,
    .refill-block__list li {
        font-size: 13px;
    }
}

/* Усі помаранчеві акценти -> сині */

.chischennya-page a,
.chischennya-page a:visited{
    color:#1a73e8;
}

.chischennya-page a:hover{
    color:#1557b0;
}

/* помаранчеві кнопки теми */
.chischennya-page .btn,
.chischennya-page .button,
.chischennya-page input[type="submit"],
.chischennya-page button,
.chischennya-page .wpcf7-submit{
    background:#1a73e8 !important;
    border-color:#1a73e8 !important;
}

.chischennya-page .btn:hover,
.chischennya-page .button:hover,
.chischennya-page input[type="submit"]:hover,
.chischennya-page button:hover,
.chischennya-page .wpcf7-submit:hover{
    background:#1557b0 !important;
    border-color:#1557b0 !important;
}

/* помаранчеві галочки/іконки */
.chischennya-page .fa-check,
.chischennya-page .fa-check-circle,
.chischennya-page .checkmark,
.chischennya-page .icon-check{
    color:#1a73e8 !important;
}

/* виділення ціни */
.chischennya-page .price-highlight,
.chischennya-page .price,
.chischennya-page .cost{
    color:#1a73e8 !important;
}

/* помаранчеві рамки */
.chischennya-page *{
    --accent-color:#1a73e8;
}

/* ============================================
   КНОПКА INSTAGRAM
   ============================================ */

.instagram-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(220, 39, 67, 0.4);
    border: none;
    cursor: pointer;
    flex-wrap: wrap;
    justify-content: center;
}

.instagram-more-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px rgba(220, 39, 67, 0.5);
}

.instagram-more-btn:active {
    transform: scale(0.96);
}

.instagram-more-btn .instagram-icon {
    font-size: 22px;
    line-height: 1;
}

.instagram-more-btn .instagram-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 2px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ===== АДАПТАЦІЯ ДЛЯ МОБІЛЬНИХ ===== */
@media (max-width: 768px) {
    .instagram-more-btn {
        font-size: 15px;
        padding: 12px 20px;
        gap: 8px;
        width: 100%;
        max-width: 320px;
    }
    
    .instagram-more-btn .instagram-badge {
        font-size: 12px;
        padding: 2px 10px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .instagram-more-btn {
        font-size: 14px;
        padding: 10px 16px;
        gap: 6px;
    }
    
    .instagram-more-btn .instagram-icon {
        font-size: 18px;
    }
}