/* =========================================================
   CTA – finální precizní verze
   ========================================================= */


/* ===== SPOLEČNÝ ZÁKLAD (tvrdé přepsání Shoptetu) ===== */
.poptat-button,
.p-tools .btn.btn-primary {

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  height: 38px;                 /* pevná výška = žádný 1mm rozdíl */
  padding: 0 18px !important;   /* vertikální padding odstraněn */

  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.2px;
  text-transform: uppercase;

  border-radius: 20px !important;   /* silnější přepsání */
  line-height: 1 !important;

  transition: all 0.2s ease;
}


/* ===== POPTAT ===== */
.poptat-button {
  background-color: #ff9900 !important;
  color: #ffffff !important;
  border: none !important;
}

.poptat-button:hover {
  background-color: #e68a00 !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}


/* ===== DETAIL ===== */
.p-tools .btn.btn-primary {
  background-color: #e74c3c !important;
  color: #ffffff !important;
  border: none !important;
}

.p-tools .btn.btn-primary:hover {
  background-color: #d84334 !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}


/* ===== LIST – odstranění 1mm posunu ===== */
.products-list .product,
.products-list .product-item {
  display: flex;
  align-items: center;
}

.products-list .p-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}


/* ===== DETAIL STRÁNKA ===== */
body.type-product .poptat-button {
  height: 44px;        /* o trochu větší, ale ne přehnané */
  font-size: 15px;
}


/* ===== MOBIL ===== */
@media (max-width: 767px) {

  .p-tools,
  .prices {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .poptat-button,
  .p-tools .btn.btn-primary {
    width: 92%;
    max-width: 360px;
    height: 44px;
  }
}

box-shadow: 0 4px 12px rgba(0,0,0,.18);


/* ===== MOBIL – odstranění prázdného price bloku ===== */
@media (max-width: 767px) {

  /* pokud je cena skrytá, celý price blok vypnout */
  .products-list .prices:empty {
    display: none !important;
  }

  /* pro jistotu i nulové ceny */
  .products-list .zero-price .prices {
    display: none !important;
  }

  /* přepnout offers z flex na block */
  .products-list .offers {
    display: block !important;
    width: 100% !important;
  }

  /* centrování detail */
  .products-list .p-tools {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
  }

  .products-list .p-tools .btn.btn-primary {
    display: block !important;
    width: 90% !important;
    max-width: 360px !important;
    margin: 0 auto !important;
  }

}