/* /naprawa-bizuterii/ — pracownia jubilerska */

/* Hero override — compact, no calculator */
.promo_section--naprawa .promo_section__inner {
  min-height: 18rem;
  padding: 3rem 0;
}

.promo_section--naprawa .promo_section__title {
  font-size: 2.2rem;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.promo_section--naprawa .promo_section__text {
  font-weight: 400;
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: 28rem;
  margin-bottom: 1.4rem;
}

.promo_section--naprawa .promo_section__btn {
  display: inline-flex;
  width: auto;
  padding: 0.85rem 2rem;
}

/* 9 service tiles — white card with subtle yellow accent */
.naprawa_services {
  padding: 4rem 0 3rem;
}

.naprawa_services .title_x {
  text-align: center;
  margin-bottom: 2.5rem;
}

.naprawa_services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.naprawa_services__item {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 0.5rem;
  padding: 1.5rem 1.5rem 1.5rem 2.25rem;
  position: relative;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.naprawa_services__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #fed435;
  border-radius: 0.5rem 0 0 0.5rem;
}

.naprawa_services__item:hover {
  border-color: #fed435;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.naprawa_services__item__title {
  font-weight: 700;
  font-size: 1rem;
  color: #212121;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.naprawa_services__item__text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #555;
}

/* Price list */
.naprawa_pricelist {
  padding: 3rem 0 4rem;
}

.naprawa_pricelist__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.naprawa_pricelist__table thead {
  background: #f7f7f7;
}

.naprawa_pricelist__table th,
.naprawa_pricelist__table td {
  padding: 0.85rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid #ececec;
}

.naprawa_pricelist__table th {
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #555;
}

.naprawa_pricelist__price {
  text-align: right !important;
  color: #5cb85c;
  font-weight: 600;
  white-space: nowrap;
}

/* Free content spacing */
.naprawa_pricelist + .page__free_content {
  margin-top: 1rem;
}

@media screen and (max-width: 1024px) {
  .naprawa_services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .naprawa_services {
    padding: 2.5rem 0 2rem;
  }
  .naprawa_services__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .naprawa_pricelist {
    padding: 2rem 0 3rem;
  }
  .naprawa_pricelist__table {
    font-size: 0.82rem;
  }
  .naprawa_pricelist__table th,
  .naprawa_pricelist__table td {
    padding: 0.65rem 0.8rem;
  }
}

/* Category sub-header rows in pricelist */
.naprawa_pricelist__category th {
  background: #f7f1de;
  color: #212121;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-align: left;
  padding: 1rem 1rem 0.7rem;
  border-bottom: 2px solid #fdd435;
}

/* Notes block under the table */
.naprawa_pricelist__notes {
  list-style: none;
  padding: 1.5rem 1.5rem;
  margin: 2rem 0 0;
  background: #fafafa;
  border-left: 3px solid #fdd435;
  border-radius: 0.4rem;
}

.naprawa_pricelist__notes li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
}

.naprawa_pricelist__notes li:last-child { margin-bottom: 0; }

.naprawa_pricelist__notes li::before {
  content: '*';
  position: absolute;
  left: 0;
  top: 0;
  color: #c9a84c;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Match height with hero form (.hero_komis_form is 520px+, default promo is 360px) */
.promo_section--naprawa .promo_section__inner {
  min-height: 42rem;
}

/* Hero trust-bar (below H1 subtitle, above CTA) */
.naprawa_trust_bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 1.2rem 0 1.5rem;
  font-size: 0.85rem;
  color: #ddd;
}

.naprawa_trust_bar__item {
  position: relative;
  padding-right: 1rem;
  line-height: 1.4;
}

.naprawa_trust_bar__item:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: 0;
  color: #c9a84c;
  font-weight: 700;
}

/* Secondary phone CTA in promo add_text slot */
.naprawa_phone_cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fdd435;
  text-decoration: none;
  transition: color 0.15s;
}

.naprawa_phone_cta:hover {
  color: #fff;
}

@media (max-width: 750px) {
  .naprawa_trust_bar {
    font-size: 0.78rem;
    gap: 0.3rem 0.7rem;
  }
}

/* Hero CTA hover — keep gold visible against dark hero bg */
.promo_section--naprawa .promo_section__btn.btn_gold:hover {
  background: #fff;
  color: #212121;
}
