/* ============================================
   EQUITONE — FONAS
============================================ */
.equitone-product {
    padding: 0;
    background: #EEE5E5;
    font-family: 'Poppins', system-ui, sans-serif;
}

.equitone-product .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   KAIRI PUSE (MAIN IMAGE)
============================================ */
.eq-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 50px;
}

.eq-image {
    margin-top: 30px;
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 520px;
}

.eq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* ============================================
   DESINE PUSE (INFO)
============================================ */
.eq-info {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.eq-info h2 {
    margin-top: 30px;
    font-size: 36px;
    font-weight: 600;
    color: #222;
    letter-spacing: 0.02em;
}

.eq-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.eq-info h4 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ============================================
   MINIATIŪRŲ KARUSELĖ
============================================ */
.eq-thumbs-grid {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    gap: 14px;
}

.eq-thumbs-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 10px;
    height: 105px;
    padding: 4px 0;
}

/* Hide scrollbar everywhere */
.eq-thumbs-carousel::-webkit-scrollbar {
    height: 6px;
    background: transparent !important;
}
.eq-thumbs-carousel::-webkit-scrollbar-track {
    background: transparent !important;
}
.eq-thumbs-carousel {
    scrollbar-width: thin;
    scrollbar-color: #bbb transparent !important;
    -ms-overflow-style: none;
}

.eq-thumb {
    flex: 0 0 auto;
    cursor: pointer;
}

.eq-thumb img {
    width: 90px;
    height: 90px;
    border-radius: 10px;
    object-fit: cover;
    background: #EEE5E5;
    transition: 0.25s;
}

.eq-thumb.active img,
.eq-thumb:hover img {
    box-shadow: 0 0 12px rgba(227, 0, 15, 0.35);
}

/* Arrows */
.eq-prev,
.eq-next {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E3000F;
    width: 32px;
    height: 32px;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.25s;
}

.eq-prev:hover,
.eq-next:hover {
    background: #E3000F;
    color: #fff;
    box-shadow: 0 4px 10px rgba(227, 0, 15, 0.35);
}

/* ============================================
   KONTAKTŲ BLOKAS
============================================ */
.eq-contact {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 150px;
    padding: 18px 24px;
    background: #EEE5E5;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    margin-top: 15px;
}

.eq-contact-text h5 {
    font-size: 15px;
    font-weight: 600;
}

.eq-contact-text p {
    margin: 0;
    font-size: 14px;
    color: #444;
}

.btn-get {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    background: #E3000F;
    color: #fff;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: 0.25s;
}

.btn-get:hover {
    background: #b7000b;
    box-shadow: 0 8px 18px rgba(227, 0, 15, 0.35);
}

/* ============================================
   IŠSAMI INFORMACIJA
============================================ */
.equitone-spec {
    padding: 60px 0 80px;
    background: #EEE5E5;
}

.eq-spec-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #232323;
}

/* GRID — dvi kolonos */
.eq-spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Box */
.eq-spec-box {
    background: #F3EAEA;
    padding: 30px 35px;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.eq-spec-box h4 {
    font-size: 20px;
    margin-bottom: 18px;
    color: #222;
}

.eq-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.eq-list > li {
    margin-bottom: 14px;
    padding-left: 22px;
    position: relative;
    color: #333;
    line-height: 1.55;
}

/* RED DOT */
.eq-list > li::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #E3000F;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 7px;
}

/* ============================================
   ANIMATIONS
============================================ */
#eqMainImage {
    transition: opacity 0.2s ease;
}
#eqMainImage.fade-out {
    opacity: 0;
}

/* ============================================
   ADAPTIVE
============================================ */
@media (max-width: 900px) {
    .eq-wrapper {
        flex-direction: column;
    }
    .eq-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .eq-spec-grid {
        grid-template-columns: 1fr;
    }
    .eq-image {
        height: 360px;
    }
}
@media (max-width: 900px) {

    /* === КАРТИНКА — по центру === */
    .eq-image {
        order: -1; /* картинка наверх */
        width: 100% !important;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px !important;
    }

    .eq-image img {
        width: 90% !important;
        height: auto !important;
        border-radius: 20px;
    }

    /* === Выровнять контейнер === */
    .eq-wrapper {
        flex-direction: column;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0;
        align-items: center;
    }

    /* === Заголовок ближе к картинке === */
    .eq-info h2 {
        margin-top: 20px !important;
        font-size: 28px !important;
        text-align: center;
    }

    .eq-info {
        width: 100%;
        max-width: 100%;
        text-align: center;
        align-items: center;
    }

    /* === Контент по центру под картинкой === */
    .eq-info p {
        text-align: center;
        width: 90%;
    }

    /* === Контейнеры не выходят за экран === */
    .equitone-product .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box;
    }
}
/* ============================================
   MOBILE FIX — EQUITONE CONTACT BLOCK
============================================ */
@media (max-width: 900px) {

  /* Контактный блок — на всю ширину */
  .eq-contact {
    width: 100%;
    max-width: 100%;
    padding: 16px;
    gap: 14px;
    box-sizing: border-box;
  }

  /* Текстовая часть */
  .eq-contact-text {
    width: 100%;
  }

  /* Строки с иконками */
  .eq-contact-text p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Иконки не сжимаются */
  .eq-contact-text svg,
  .eq-contact-text img,
  .eq-contact-text i {
    flex-shrink: 0;
    min-width: 16px;
  }

  /* Кнопка */
  .btn-get {
    width: 70%;
    justify-content: center;
  }
}
/* ============================================
   CENTER BUTTON INSIDE CONTACT CARD
============================================ */
@media (max-width: 900px) {

  .eq-contact .btn-get {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
  }
}

.natura-tech-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    font-family: 'Poppins', system-ui, sans-serif;
}

.natura-tech-table {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;   /* фиксируем сетку */
}

/* header bg */
.natura-tech-table thead tr {
    background: #f5f0ef;
}

.natura-tech-table th {
    text-align: left;
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.natura-tech-table td {
    padding: 18px 22px;
    font-size: 15px;
    color: #222;
    vertical-align: middle;
    border-top: 1px solid #ddd;
}

.natura-tech-table tr:last-child td {
    border-bottom: none;
}

/* симметрия колонок */
.natura-tech-table th:nth-child(1),
.natura-tech-table td:nth-child(1) {
    width: 25%;
}

.natura-tech-table th:nth-child(2),
.natura-tech-table td:nth-child(2) {
    width: 50%;
    text-align: center;   /* центрируем контент */
}

.natura-tech-table th:nth-child(3),
.natura-tech-table td:nth-child(3) {
    width: 25%;
    text-align: right;
}

