/* ── Page heading ── */
.page-title {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #1a1a1a;
}
.page-subtitle {
  font-size: 13px;
  color: #7a756e;
  margin-bottom: 20px;
}
 
/* ── Step nav ── */
.step-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid #d5d0c8;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}
.step-nav-item {
  padding: 10px 8px;
  text-align: center;
  border-right: 1px solid #d5d0c8;
  background: #f2efea;
  cursor: pointer;
}
.step-nav-item:last-child { border-right: none; }
.step-nav-item .sn {
  display: block;
  font-size: 16px;
  color: #7a756e;
  margin-bottom: 2px;
  font-family: monospace;
}
.step-nav-item .sl {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #7a756e;
}
.step-nav-item.active { background: #1a1a1a; }
.step-nav-item.active .sn,
.step-nav-item.active .sl { color: #fff; }
.step-nav-item.done { background: #ddd9d2; }
.step-nav-item.done .sl { color: #2a2520; }
 
/* ── Step panels ── */
.step-panel { display: none; }
.step-panel.active { display: block; }
 
/* ── Section card ── */
.section-card {
  background: var(--primary);
  border-radius: 16px;
  padding: 30px;
}
@media (max-width: 640px) {
  .section-card { padding: 20px 16px; }
}
 
/* ── Grid helpers ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
@media (max-width: 560px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .step-nav-item .sl { font-size: 9px; }
}
 
/* ── Field label ── */
.field-label {
  display: block;
  font-size: 16px;
  color: #5a5550;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
 
/* ── Select ── */
.select-field {
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 0.625rem;
  padding: 0 32px 0 14px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: #2a2520;
  height: 3.75rem;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%237a756e'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.select-field:focus { box-shadow: 0 0 0 2px rgba(0,0,0,0.1); }
 
/* ── Counter ── */
.counter-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 0.625rem;
  overflow: hidden;
  height: 3.75rem;
}
.counter-wrap input {
  border: none;
  text-align: center;
  flex: 1;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: #2a2520;
  outline: none;
  background: transparent;
}
.counter-btn {
  background: #f0ede8;
  border: none;
  width: 40px;
  height: 100%;
  cursor: pointer;
  font-size: 18px;
  color: #7a756e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}
.counter-btn:first-child { border-right: 1px solid #e0dcd4; }
.counter-btn:last-child  { border-left:  1px solid #e0dcd4; }
.counter-btn:hover { background: #ddd9d2; color: #1a1a1a; }
 
/* ── Transfer cards ── */
.transfer-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
@media (max-width: 560px) { .transfer-options { grid-template-columns: 1fr; } }
 
.transfer-card {
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 0.625rem;
  padding: 16px;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.transfer-card.selected { border: 2px solid #1a1a1a; background: #fff; }
.transfer-card .t-icon { font-size: 20px; margin-bottom: 8px; }
.transfer-card h4 { font-size: 13px; font-weight: 700; margin-bottom: 4px; color: #1a1a1a; }
.transfer-card p  { font-size: 12px; color: #5a5550; }
 
/* ── Sub label ── */
.sub-label {
  font-size: 11px;
  font-weight: 600;
  color: #5a5550;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
 
/* ── Hotel layout ── */
.hotel-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
}
@media (max-width: 560px) { .hotel-layout { grid-template-columns: 1fr; } }
 
.filter-group { margin-bottom: 18px; }
.filter-title {
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #7a756e;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}
.filter-item {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
  font-size: 16px;
  color: #2a2520;
  cursor: pointer;
}
.filter-item input { accent-color: #1a1a1a; width: 13px; height: 13px; }
 
input,textarea{
  padding-left:16px ;
}
.hotel-card {
  border: 1px solid #d5d0c8;
  border-radius: 0.625rem;
  overflow: hidden;
  background: #fff;
  margin-bottom: 12px;
}
.hotel-card.selected { border: 2px solid #1a1a1a; }
.hotel-img {
  width: 100%;
  height: 240px;
  background: #ddd9d2;
  overflow: hidden;
  position: relative;
}
.hotel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hotel-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 13px;
  letter-spacing: 0.05em;
  background: #e8e4de;
}
.hotel-info {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.hotel-info h4  { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.hotel-stars    { font-size: 11px; margin-bottom: 3px; }
.hotel-meta     { font-size: 11px; color: #7a756e; }
.hotel-price    { font-size: 13px; color: #c9703a; font-weight: 700; font-family: monospace; }
.hotel-actions  { display: flex; align-items: center; gap: 10px; }
 
.btn-select {
  font-size: 12px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  background: #1a1a1a;
  color: #c8f31d;
  transition: opacity 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.btn-select:hover { opacity: 0.85; }
.btn-select.is-selected {
  background: #c8f31d;
  color: #1a1a1a;
}
 
/* ── Day rows ── */
.day-row {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 0.625rem;
  padding: 16px;
  margin-bottom: 10px;
}
.day-row-title {
  font-size: 12px;
  color: #7a756e;
  margin-bottom: 10px;
  font-weight: 600;
}
.day-row-inner { display: flex; align-items: center; gap: 10px; }
.day-select {
  flex: 1;
  background: #f7f5f2;
  border: 1px solid #d5d0c8;
  border-radius: 6px;
  padding: 10px 30px 10px 12px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  color: #2a2520;
  appearance: none;
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%237a756e'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.btn-skip {
  font-size: 12px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 6px;
  border: 1px solid #d5d0c8;
  background: #fff;
  cursor: pointer;
  color: #2a2520;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
  font-family: 'DM Sans', sans-serif;
  flex-shrink: 0;
}
.btn-skip:hover { background: #1a1a1a; color: #c8f31d; border-color: #1a1a1a; }
.btn-skip.is-skipped { background: #c8f31d; color: #1a1a1a; border-color: #c8f31d; }
 
/* ── Summary ── */
.summary-section {
  background: #fff;
  border: 1px solid #d5d0c8;
  border-radius: 0.625rem;
  overflow: hidden;
  margin-bottom: 16px;
}
.summary-section-title {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #7a756e;
  text-transform: uppercase;
  padding: 10px 16px;
  border-bottom: 1px solid #d5d0c8;
  background: #e8e4de;
  font-weight: 600;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  font-size: 13px;
  border-bottom: 1px solid #d5d0c8;
}
.summary-row:last-child { border-bottom: none; }
.summary-row.total { font-weight: 700; font-size: 15px; }
.summary-row.total span:last-child { color: #c9703a; }
 
/* ── Review layout ── */
.review-layout {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 20px;
}
@media (max-width: 600px) { .review-layout { grid-template-columns: 1fr; } }
 
/* ── Price box ── */
.price-box {
  background: #fff;
  border: 1px solid #d5d0c8;
  border-radius: 0.625rem;
  padding: 20px;
  text-align: center;
}
.price-box .total-price {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: monospace;
}
.price-box p {
  font-size: 12px;
  color: #7a756e;
  margin-bottom: 16px;
  line-height: 1.6;
}
.price-box .no-card { font-size: 11px; color: #7a756e; margin-top: 8px; font-family: monospace; }
.perk { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #7a756e; padding: 3px 0; }
.perk::before { content: '✓'; color: #c9703a; font-weight: 700; }
 
/* ── Footer buttons row ── */
.btn-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
 
/* ── btn classes (your project) ── */
/*.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 0.625rem;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.1s;
  font-family: 'DM Sans', sans-serif;
}*/
/*.btn:active { transform: scale(0.98); }*/
/*.btn-secondary       { background: #1a1a1a; color: #c8f31d; }
.btn-secondary.light { background: #c8f31d; color: #1a1a1a; }
.btn-hover:hover { opacity: 0.85; }*/
/*.btn-full { width: 100%; }*/