.cart {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Segoe UI', sans-serif;
  flex-wrap: wrap;
}

.quantity-label {
  font-size: 14px;
  color: #444;
  white-space: nowrap;
}

.quantity-control {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  height: 40px;
}

.qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  cursor: pointer;
  font-size: 20px;
  background: #fff;
  color: #333;
  text-decoration: none;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: #f1f1f1;
}

.n_quantity.qty-input {
  width: 50px;
  border: none;
  text-align: center;
  font-size: 16px;
  outline: none;
  background: white;
  padding: 0;
}

.add_pr_dz.add-to-cart {
  background-color: #2196f3;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  text-align: center;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s ease;
  cursor: pointer;
}
.cart-go {
  background-color: #2196f3;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  text-align: center;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s ease;
}

.add_pr_dz.add-to-cart:hover {
  background-color:#3f51b5;
}
.input-r{
  width: 100%;
  display: block;
}



/* formularz */

/* Kontener całego formularza */
.callback-section {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eaeaea; /* Delikatna linia oddzielająca od sekcji koszyka */
  font-family: inherit; /* Dziedziczy font z Twojej strony */
}

/* Nagłówki i teksty */
.callback-heading {
  font-size: 16px;
  color: #333;
  margin: 0 0 5px 0;
}

.callback-phone {
  color: #2188e9; /* Niebieski dopasowany do przycisku koszyka */
  text-decoration: none;
  font-weight: 600;
}

.callback-subheading {
  font-size: 14px;
  color: #333;
  margin: 0 0 15px 0;
}

/* Pola formularza (Imię, Telefon) */
.callback-form {
  display: flex;
  flex-direction: column;
  gap: 10px; /* Odstępy między polami */
}

.callback-input {
  width: 100%;
  padding:6px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  color: #333;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease;
}

.callback-input:focus {
  border-color: #2188e9; /* Niebieska ramka przy kliknięciu */
}

/* Przycisk wyślij */
.callback-btn {
  width: 100%;
  background-color: #2188e9;
  color: #ffffff;
  border: none;
  border-radius: 6px; /* Mocne zaokrąglenie w stylu "pill" */
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 5px;
}

.callback-btn:hover {
  background-color: #196bbf; /* Ciemniejszy niebieski po najechaniu */
}

/* Drobny druk na dole */
.callback-disclaimer {
  font-size: 11px;
  color: #777;
  margin-top: 10px;
}






/* Sekcja telefonu po lewej */
.phone-section {
  margin-bottom: 20px;
}

.phone-label {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin: 0 0 5px 0;
}

.phone-number {
  font-size: 18px;
  color: #2188e9; /* Kolor dopasowany do przycisku */
  font-weight: bold;
  text-decoration: none;
}

/* Lista korzyści marketingowych */
.marketing-benefits {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.marketing-benefits li {
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.marketing-benefits li strong {
  color: #333;
  margin-right: 4px; /* Mały odstęp po pogrubionym słowie */
}

/* Niebieski ptaszek */
.checkmark {
  color: #2188e9;
  font-weight: bold;
  margin-right: 8px;
  font-size: 14px;
}


/* cennik  */
/*
.extra-services-box{
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 22px;
    padding: 28px 24px;
    margin-top: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
*/
.extra-services-title{
    font-size: 30px;
    font-weight: 500;
    color: #3b4b5c;
    text-align: center;
    margin: 0 0 24px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.extra-service-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid #ececec;
}

.extra-service-item:last-child{
    border-bottom: none;
    padding-bottom: 0;
}

.service-name{
    font-size: 21px;
    line-height: 1.4;
    color: #2f3e4d;
    font-weight: 400;
}

.service-price{
    font-size: 22px;
    font-weight: 700;
    color: #2f95e8;
    white-space: nowrap;
}