/* Лого збільшили */
#logo img {
    width: 175px;
    height: auto;
    max-height: 55px;
}
.pr-footer-logo {
    width: 115px !important;
    height: auto !important;
}

/* VECTA Product Description Styles */
/* ==================================================
   PRODUCT DESCRIPTION CUSTOM STYLES (vct-pdesc)
   ================================================== */

.vct-pdesc-container {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: #334155;
  line-height: 1.8;
  margin: 0 auto;
}

.vct-pdesc-header {
  padding: 10px 0 25px;
  border-bottom: 3px solid #1e3a8a;
  margin-bottom: 30px;
  text-align: left;
}

.vct-pdesc-header h2 {
  font-size: 26px;
  font-weight: 800;
  color: #1e3a8a;
  margin: 0 0 8px;
  letter-spacing: 0.3px;
  line-height: 1.35;
}

.vct-pdesc-header p {
  font-size: 16px;
  margin: 0;
  color: #475569;
  font-weight: 500;
  line-height: 1.6;
}

.vct-pdesc-section {
  margin-bottom: 35px;
}

.vct-pdesc-section h2 {
  font-size: 18px;
  color: #1e3a8a;
  font-weight: 700;
  margin: 0 0 15px;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 8px;
  line-height: 1.4;
}

.vct-pdesc-section h3 {
  font-size: 17px;
  color: #0f172a;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.45;
}

.vct-pdesc-text {
  font-size: 15px;
  text-align: justify;
  margin: 0 0 15px;
}

.vct-pdesc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 30px; /* <-- ДОБАВЬТЕ ЭТУ СТРОКУ (отступ снизу) */
}

/* Стандартна нотка (синя) */
.vct-pdesc-note {
  background-color: #f0f4f8;
  border-left: 4px solid #1e40af;
  padding: 15px;
  border-radius: 4px;
}

/* Модифікатор для важливого/попередження (червоний) */
.vct-pdesc-note.warning {
  background-color: #fef2f2;
  border-left: 4px solid #dc2626;
}

.vct-pdesc-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vct-pdesc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.vct-pdesc-card h3 {
  font-size: 15px;
  color: #0f172a;
  margin: 0 0 10px;
  font-weight: 700;
}

.vct-pdesc-card p {
  font-size: 14px;
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

.vct-pdesc-note {
  background-color: #fff7ed;
  border-left: 4px solid #ea580c;
  padding: 15px 20px;
  border-radius: 4px;
  margin: 25px 0;
  font-size: 14.5px;
  color: #451a03;
}

.vct-pdesc-list {
  padding-left: 20px;
  margin: 15px 0;
}

.vct-pdesc-list li {
  font-size: 14.5px;
  margin-bottom: 8px;
}

.vct-pdesc-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.vct-pdesc-table td,
.vct-pdesc-table th {
  padding: 12px 15px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 14.5px;
  text-align: left;
}

.vct-pdesc-table td:first-child,
.vct-pdesc-table th:first-child {
  font-weight: 600;
  color: #475569;
  width: 40%;
}

.vct-pdesc-faq {
  margin-top: 25px;
}

.vct-pdesc-faq details {
  border-bottom: 1px solid #e2e8f0;
  padding: 0;
}

.vct-pdesc-faq summary {
  cursor: pointer;
  padding: 15px 5px;
  font-size: 15px;
  font-weight: 700;
  color: #1e3a8a;
  list-style: none;
  position: relative;
  padding-right: 30px;
}

.vct-pdesc-faq summary::-webkit-details-marker {
  display: none;
}

.vct-pdesc-faq summary::after {
  content: "+";
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 400;
}

.vct-pdesc-faq details[open] summary::after {
  content: "−";
}

.vct-pdesc-faq-answer {
  padding: 0 5px 15px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
}

.vct-pdesc-strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .vct-pdesc-header h2 {
    font-size: 22px;
  }

  .vct-pdesc-header p {
    font-size: 14px;
  }

  .vct-pdesc-section h2 {
    font-size: 16px;
  }

  .vct-pdesc-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .vct-pdesc-card {
    padding: 16px;
  }

  .vct-pdesc-text {
    font-size: 14.5px;
    text-align: left;
  }

  .vct-pdesc-table {
    font-size: 14px;
  }

  .vct-pdesc-table td,
  .vct-pdesc-table th {
    padding: 10px;
  }
}


/* VECTA Product Description Styles */
/* ==================================================
   КІНЕЦЬ СТИЛЕЙ В КАРТОЧЦІ ТОВАРУ (vct-pdesc)
   ================================================== */

/* ==========================================================================
   1. КАРТКА ТОВАРУ (Зменшення жирності назви)
   ========================================================================== */

/* Зменшуємо насиченість шрифту в назвах товарів з 600 до 500 */
.pr-module-item-title {
    font-weight: 500 !important;
}


/* Іконки біля категорій: робимо акуратнішими та менш агресивними */
.pr-menu-catalog-item-img {
    width: 20px !important;
    height: 20px !important;
    opacity: 0.75 !important;
    margin-right: 12px !important;
    transition: opacity 0.2s ease !important;
}

/* Ефект при наведенні на пункт: м'який сірий фон замість синього тексту */
.pr-menu-catalog-item:hover {
    background-color: #f3f4f6 !important;
}

.pr-menu-catalog-item:hover .pr-menu-catalog-item-title a {
    color: #000000 !important;
    text-decoration: none !important;
}

.pr-menu-catalog-item:hover .pr-menu-catalog-item-img {
    opacity: 1 !important;
}


/* Робимо КОД товару жовтим */
span.pr-product-main-info-code:first-of-type {
    color: #000000 !important;             /* Чорний колір тексту */
    background-color: #ffe87c !important; /* Яскраво-жовтий фон (як маркер) */
    padding: 2px 6px !important;           /* Відступи навколо тексту */
    border-radius: 4px !important;         /* Закруглені кути */
    font-weight: 700 !important;
}


