:root {
  --violet: rgb(109, 109, 212);
  --violet-transparent: rgba(109, 109, 212, 0.9);
  --violet-strong-transparent: rgba(109, 109, 212, 0.5);
  --violet-light-transparent: rgba(233, 233, 249);
  --dark-gray: #525252;
  --devdraw: #0b2b53;
}
.cennik {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  justify-content: left;
  margin-top: 200px;
}
.cennik h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  padding: 1rem;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  /* transform: translateX(-10px); */
}

/* === GLOBAL === */

.pricing-page {
  max-width: 540px;
  width:100%;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
  font-family: 'ahamono', monospace;
  color: var(--dark-gray);
}

/* === NAGŁÓWKI SEKCJI (ikona + tytuł) === */

.price-box__header,
.tickets-box__header,
.payment-box__header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  padding:0 1rem;
  /* margin-bottom: 1rem; */
}

.price-box__icon img,
.tickets-box__icon img,
.payment-box__icon img {
  
  width: 64px;
  height: 64px;
  display: block;
}

.price-box__title,
.tickets-box__title,
.payment-box__title {
  display: flex;
  /* max-width: 100%; */
  justify-content: center;
  align-items: center;
  white-space: normal;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark-gray);
  text-align: center;
  padding:0;
}

/* === BLOKI SEKCJI === */

.price-box,
.tickets-box,
.payment-box {
  display: flex;
  flex-shrink: 1;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  /* margin-top: 2.5rem; */
  text-align: left;
  width:100%;
}

.price-box__content,
.tickets-box__content,
.payment-box__content {
  width: 100%;
  max-width: 540px;
  margin-bottom:2rem;
}

/* === WSPÓLNY STYL WIERSZY (CENY + BILETY) === */

.price-row,
.tickets-subrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-row__label,
.tickets-subrow__label {
  flex: 1;
  font-size: 0.95rem;
  color: var(--dark-gray);
  padding:.5rem 0;
}

.price-row__value,
.tickets-subrow__value {
  flex-shrink: 0;
  min-width: 100px;
  text-align: right;
  white-space: nowrap;
}

/* === CENY I WALUTY === */

.price-num {
  color: var(--violet);
  font-weight: 600;
}

.price-curr {
  color: var(--dark-gray);
  margin-left: 2px;
  font-size: 0.9em;
}

/* === LISTY === */

.price-list,
.tickets-list,
.tickets-sublist,
.payment-list {
  list-style: none;
  padding-left: 1rem;
  margin: 0;
  width: 100%;
}

/* === NOTATKI POD CENNIKIEM === */

.price-note {
  margin: 0.6rem 0;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.4;
  color: var(--dark-gray);
  padding:1rem;
}

/* === BILETY / OBIEKTY === */

.tickets-item {
  margin-top: 1rem;
}

.tickets-item__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tickets-item__name {
  font-weight: 500;
  color: var(--dark-gray);
}

.tickets-item__btn {
  background: var(--violet);
  color: #fff;
  text-decoration: none;
  /* font-size: 0.8rem; */
  border-radius: 6px;
  padding: 0.5rem 0.9rem;
  font-family: 'ahamono', monospace;
  transition: 0.2s ease;
}

.tickets-item__btn:hover {
  opacity: 0.85;
}

.tickets-item--inline .tickets-sublist {
  margin-top: 0.3rem;
}

/* === PŁATNOŚCI === */

.payment-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.5rem;
  justify-content: center;
  align-items: center;
}

.payment-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width:260px;
  justify-content: start;
}

.payment-item__icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  object-fit: contain;
}

.payment-item__text {
  color: var(--dark-gray);
  font-size: 0.9rem;
}

.payment-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-top: 1.2rem;
  color: var(--dark-gray);
  font-size: 0.9rem;
  padding:1rem;
}

.payment-note .payment-item__icon {
  width: 100px;
  height: 100px;
}

.payment-note span {
    text-align: center;
}

/* === RWD === */


