#izovat-red-product-section {
  padding: 60px 20px;
  background-color: #fff;
  font-family: "Segoe UI", sans-serif;
  max-width: 1300px;
  margin: 0 auto;
}

.izovat-red-title {
  margin-top: 70px;
  margin-bottom: 30px;
  background-color: #d40000;  
  border-radius: 15px;
  padding: 5px 0px;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #ffffff;
}
.product-image>img{
  display: none;
}
.izovat-red-grid {
  display: flex;
  gap: 100px;
  flex-wrap: wrap;
  justify-content: center;
}

.izovat-red-card {
  width: 320px;
  background-color: #d40000;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.izovat-red-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.izovat-red-img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 8px;
  background: white;
  padding: 5px;
}

.izovat-red-name {
  font-size: 1rem;
  font-weight: 600;
  margin: 10px 0 6px;
  text-align: center;
  color: #ffffff;
}

.izovat-red-desc {
  font-size: 0.9rem;
  text-align: center;
  color: #ffe4e4;
  margin-bottom: 12px;
}

.izovat-red-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  background: #b3001f;
  padding: 8px 14px;
  border-radius: 6px;
  margin-top: auto;
  user-select: none;
  margin-top: 20px;
}

/* --- Переключатель толщины --- */
.izovat-thickness-toggle {
  margin: 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  user-select: none;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Контейнер переключателя (стильный toggle switch) */
.izovat-switch {
  position: relative;
  width: 60px;
  height: 30px;
  z-index: 100;
}

.izovat-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
  cursor: pointer;
}

.izovat-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #b3001f;
  border-radius: 30px;
  transition: background-color 0.3s ease;
  box-shadow: 0 0 5px rgba(255,255,255,0.2);
}

.izovat-slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.izovat-switch input:checked + .izovat-slider {
  background-color: #ff4d66;
}

.izovat-switch input:checked + .izovat-slider:before {
  transform: translateX(30px);
}

/* Подписи */
.izovat-thickness-label {
  font-size: 0.85rem;
  color: #fff;
  min-width: 30px;
  text-align: center;
  user-select: none;
  pointer-events: none; /* чтобы не мешал кликам */
}



.product-page {
  padding: 20px 5%;
  max-width: 1200px;
  margin: auto;
}

.product-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.product-image img {
  max-width: 400px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: none;
}
.product-image{
  display: none;
}
.product-detail{
  padding-top: 40px;
}
.product-text h1 {
  margin-top: 40px;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #111;
}

.product-text h2 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #b40000;
}

.product-text p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-text ul {
  padding-left: 20px;
  list-style: square;
}

.highlight {
  color: #b40000;
}

/* таблица характеристик */
.product-specs h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #b40000;
}

.specs-table {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}

.specs-table .row {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid #eee;
}

.specs-table .row span:first-child {
  font-weight: bold;
  color: #444;
}

.specs-table .row span:last-child {
  color: #222;
}

.specs-table .row:last-child {
  border-bottom: none;
}

/* кнопка */
.buy-btn {
  text-align: center;
  margin: 40px 0;
}

.btn {
  display: inline-block;
  background: #b40000;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn:hover {
  background: #d60000;
  transform: translateY(-2px);
}

/* адаптивность */
@media (max-width: 768px) {
  .product-detail {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .specs-table .row {
    flex-direction: column;
    align-items: flex-start;
  }
}


.product-text>ul>li{
  text-align: left;
}


.page3_card_button{
  margin-top: 20px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-weight: bold;
  background-color: #b3001f;
  width: 100px;
}


.img_5page{
  display: flex;

  gap: 30px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  max-width: 1500px;
  flex-wrap: wrap;
}
.img_5page>img{
  border-radius: 15px;
  width: 300px;
  

}



   .specs-table-wrapper {
      max-width: 1000px;
      margin: 30px auto;
      padding: 20px;
      font-family: "Segoe UI", Roboto, Arial, sans-serif;
      background: #111;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
      color: #e0e0e0;
    }

    .specs-table-wrapper h2 {
      color: #fff;
      text-align: center;
      margin-bottom: 20px;
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 0.5px;
    }

    table.specs-table {
      width: 100%;
      border-collapse: collapse;
      overflow: hidden;
      border-radius: 10px;
    }

    table.specs-table thead {
      background-color: #b40000;
      color: #fff;
    }

    table.specs-table th,
    table.specs-table td {
      padding: 10px 14px;
      text-align: left;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    table.specs-table th {
      font-weight: 700;
      font-size: 14px;
    }

    table.specs-table tbody tr:hover {
      background-color: rgba(180, 0, 0, 0.15);
      transition: background-color 0.3s ease;
    }

    table.specs-table td {
      font-size: 14px;
    }

    @media (max-width: 700px) {
      table.specs-table thead {
        display: none;
      }
      table.specs-table,
      table.specs-table tbody,
      table.specs-table tr,
      table.specs-table td {
        display: block;
        width: 100%;
      }
      table.specs-table tr {
        margin-bottom: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 10px;
        background-color: #1a1a1a;
      }
      table.specs-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
      }
      table.specs-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 14px;
        width: 45%;
        font-weight: 600;
        text-align: left;
        color: #fff;
      }
    }



    .card6pagephoto{
      height: 300px;
      border: 5px solid white;
      border-radius: 5px;
    }





    .img_7page{
      width: 300px;
      margin: 40px 0px;
      border-radius: 15px;
      border: 5px solid white;
    }

    .photo_page71{
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 100px;
    }
    .photo_page71>img{
      width: 200px;

      
    }



    .teknogips-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.teknogips-header,
.teknogips-footer {
  text-align: center;
  margin-bottom: 40px;
}

.teknogips-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.teknogips-img {
  max-width: 300px;
  margin: 0 auto;
  display: block;
  border-radius: 10px;
}

.teknogips-block {
  background: #fff;
  padding: 25px 30px;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.teknogips-subtitle {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #444;
}

.teknogips-text {
  font-size: 16px;
  color: #555;
}

.teknogips-list,
.teknogips-tech {
  list-style: disc inside;
  font-size: 16px;
  color: #444;
  padding-left: 10px;
}

.teknogips-list li,
.teknogips-tech li {
  margin: 6px 0;
}

.teknogips-footer {
  font-size: 14px;
  color: #777;
  padding-top: 20px;
  border-top: 1px solid #eee;
}





.product-section {
  padding: 70px 40px;
  border-bottom: 1px solid #ccc;
}

.product-section h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

.product-section p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 25px 0 10px;
  color: #333;
}

.product-section ul {
  margin: 0 0 20px 20px;
  padding: 0;
}

.product-section li {
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: #333;
}
.glass-mesh {
  max-width: 900px;
  margin: 30px auto;
  padding: 25px;
  border: 1px solid #ccc;
  border-radius: 12px;
  background-color: #fff;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.glass-mesh__image {
  text-align: center;
  margin-bottom: 20px;
}

.glass-mesh__image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.glass-mesh__title {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #222;
}

.glass-mesh__description {
  font-size: 15px;
  margin-bottom: 20px;
}

.glass-mesh__section {
  margin-bottom: 20px;
}

.glass-mesh__section-title {
  font-weight: bold;
  margin-bottom: 8px;
  color: #444;
}

.glass-mesh__section-text {
  font-size: 15px;
  line-height: 1.6;
}



.logo{
  color: #fff;
  text-decoration: none;
  font-size: 40px;
}


.product-section{
color: #333;
}



