/* === Общий контейнер === */
.prdinfo-container {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.prdinfo-left { flex: 0 0 380px; }
.prdinfo-center { flex: 1; }
.prdinfo-right { flex: 0 0 280px; }

/* === Общий стиль карточек === */
.prdinfo-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  margin-bottom: 15px;
}

/* === Левая колонка: фото === */
.prdinfo-mainimg img {
  max-width: 100%;
  border-radius: 8px;
}
.prdinfo-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.prdinfo-thumb {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 3px;
  cursor: pointer;
  background: #f9f9f9;
  transition: all .2s;
}
.prdinfo-thumb:hover { border-color: #f34d00; }
.prdinfo-thumb img {
  max-width: 70px;
  max-height: 70px;
  display: block;
}

/* === Центральная колонка === */
.prdinfo-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

/* Meta-плашка */
.prdinfo-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
  padding: 12px 15px;
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
}
.prdinfo-meta ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: contents;
}
.prdinfo-meta li {
  font-size: 14px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 6px;
}
.prdinfo-meta i { color: #f34d00; }

/* Описание */
.prdinfo-desc-header {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  border-bottom: 2px solid #f34d00;
  padding-bottom: 5px;
  color: #222;
}
.prdinfo-desc-table {
  width: 100%;
  border-collapse: collapse;
}
.prdinfo-desc-table tr { border-bottom: 1px solid #eee; }
.prdinfo-desc-table td {
  padding: 8px 10px;
  font-size: 14px;
  vertical-align: top;
}
.prdinfo-desc-table td:first-child {
  font-weight: 500;
  width: 35%;
  color: #333;
}

/* === Правая колонка === */
.prdinfo-pricebox { text-align: center; }
.prdinfo-price-label { font-size: 14px; color: #666; margin-bottom: 5px; }
.prdinfo-price { font-size: 28px; font-weight: 700; color: #f34d00; }
.prdinfo-oldprice { font-size: 18px; color: #999; margin-top: 5px; text-decoration: line-through; }

.prdinfo-buywrap { margin-top: 12px; }

/* Кнопка купить */
.prdinfo-buybtn {
  background: #f34d00;
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .25s, transform .1s;
}
.prdinfo-buybtn:hover { background: #d73f00; }
.prdinfo-buybtn:active { transform: scale(.97); }

/* Esto */
.prdinfo-instalment { text-align: center; }
.prdinfo-instalment-sum {
  font-size: 20px;
  color: #f34d00;
  margin: 6px 0;
}
.prdinfo-instalment img {
  max-width: 160px;
  height: auto;
  margin-top: 8px;
}

/* Klix */
.prdinfo-klix { text-align: center; }

/* === Адаптив === */
@media (max-width: 992px) {
  .prdinfo-container { flex-direction: column; }
  .prdinfo-left, .prdinfo-center, .prdinfo-right {
    flex: none;
    width: 100%;
  }

  /* фиксированная кнопка внизу */
  .prdinfo-buybtn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
    font-size: 18px;
    padding: 14px;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 -2px 6px rgba(0,0,0,0.2);
  }

  .prdinfo-page {
    padding-bottom: 70px; /* отступ под фиксированную кнопку */
  }
}


.prdinfo-unavailable {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    background: #e0e0e0;
    color: #666;
    border: 1px solid #ccc;
    cursor: not-allowed;
    user-select: none;
}





.addDesc {
  background: #fff;
  border: 1px solid #dfe7f9;
  border-radius: 10px;
  padding: 25px 30px;
  box-shadow: 0 2px 10px rgba(86,134,218,0.15);
  color: #26304d;
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.65;
  font-size: 15px;
  max-width: 900px;
  margin: 30px auto;
}

.addDesc h1 {
  font-size: 26px;
  color: #1f3e77;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 2px solid #5686da;
  padding-bottom: 8px;
}

.addDesc h2 {
  font-size: 18px;
  font-weight: 600;
  color: #3a5eaa;
  margin-top: 25px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  border-left: 4px solid #5686da;
  padding-left: 10px;
}

.addDesc p {
  margin-bottom: 15px;
  color: #26304d;
}

.addDesc strong {
  color: #1f3e77;
  font-weight: 700;
}

.addDesc em {
  color: #5686da;
  font-style: italic;
}

.addDesc ul {
  margin: 10px 0 20px 20px;
  padding: 0;
  list-style: none; /* <--- убираем стандартные точки */
}

.addDesc ul li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 18px;
  color: #2d3858;
}

.addDesc ul li::before {
  content: "•";
  color: #5686da;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  line-height: 1.2;
}

.addDesc table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0 25px;
  background: #f7faff;
  border-radius: 8px;
  overflow: hidden;
}

.addDesc table th {
  text-align: left;
  background: #5686da;
  color: #fff;
  padding: 10px;
  width: 30%;
  font-weight: 600;
  font-size: 14px;
}

.addDesc table td {
  padding: 10px 12px;
  border-bottom: 1px solid #e2e8f8;
  font-size: 14px;
  color: #26304d;
}

.addDesc table tr:nth-child(even) td {
  background: #edf3ff;
}

.addDesc table tr:last-child td {
  border-bottom: none;
}

.addDesc small {
  display: block;
  font-size: 13px;
  color: #506495;
  background: #f0f5ff;
  border-left: 3px solid #5686da;
  padding: 10px 12px;
  border-radius: 4px;
}

.addDesc .note {
  margin-top: 20px;
  font-style: italic;
  color: #3a5eaa;
}

@media (max-width: 768px) {
  .addDesc {
    padding: 20px;
    font-size: 14px;
  }

  .addDesc h1 {
    font-size: 22px;
  }

  .addDesc h2 {
    font-size: 16px;
  }

  .addDesc table th,
  .addDesc table td {
    display: block;
    width: 100%;
  }

  .addDesc table th {
    background: #3a5eaa;
    border-bottom: none;
  }

  .addDesc table td {
    border-bottom: 1px solid #e2e8f8;
  }
}
