/* OFFERS_AND_PACKAGES_START */
.offer-showcase {
  padding: 72px clamp(18px, 6vw, 92px);
  background: linear-gradient(180deg, #fffdf9 0%, #f3eee5 100%);
}

.offer-showcase.is-vacation {
  background: linear-gradient(180deg, #0d3037 0%, #10272d 100%);
  color: #fff;
}

.offer-showcase-head {
  max-width: 1240px;
  margin: 0 auto 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.offer-showcase-head > div { max-width: 760px; }
.offer-showcase-head .eyebrow {
  margin: 0 0 10px;
  color: #a57438;
  font: 700 11px/1.2 "DM Sans", sans-serif;
  letter-spacing: .18em;
}
.offer-showcase.is-vacation .offer-showcase-head .eyebrow { color: #e5c691; }
.offer-showcase-head h2 {
  margin: 0;
  font: 400 clamp(38px, 5vw, 68px)/.98 "Italiana", serif;
}
.offer-showcase-head p:not(.eyebrow) {
  margin: 14px 0 0;
  color: #716a61;
  line-height: 1.7;
}
.offer-showcase.is-vacation .offer-showcase-head p:not(.eyebrow) { color: rgba(255,255,255,.72); }

.offer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.offer-card {
  overflow: hidden;
  border: 1px solid rgba(90, 74, 50, .15);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(26, 20, 12, .08);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.offer-showcase.is-vacation .offer-card {
  background: #fffdf8;
  color: #171614;
  border-color: rgba(255,255,255,.12);
}

.offer-card-media {
  position: relative;
  min-height: 230px;
  background: linear-gradient(135deg, #d9c8ae, #8f7b5f);
  overflow: hidden;
}
.offer-card-media img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  display: block;
}
.offer-card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(0,0,0,.46));
}
.offer-badge {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 16px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(16, 20, 20, .82);
  color: #fff;
  font: 700 10px "DM Sans", sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.offer-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.offer-card-body h3 {
  margin: 0;
  font: 400 32px/1.05 "Italiana", serif;
}
.offer-card-body > p {
  margin: 12px 0 18px;
  color: #726a60;
  line-height: 1.65;
}
.offer-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.offer-card-meta span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #f3eee6;
  color: #5f5548;
  font: 700 10px "DM Sans", sans-serif;
}
.offer-card-price {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin-top: auto;
  padding-top: 14px;
}
.offer-card-price del { color: #9b9389; font-size: 13px; }
.offer-card-price strong { font: 700 22px "DM Sans", sans-serif; color: #8c5d24; }
.offer-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}
.offer-card-actions button,
.offer-dialog button,
.offer-dialog .offer-button {
  border: 0;
  border-radius: 999px;
  min-height: 44px;
  padding: 11px 16px;
  cursor: pointer;
  font: 700 12px "DM Sans", sans-serif;
}
.offer-card-actions button:first-child,
.offer-dialog .offer-primary { background: #171614; color: #fff; }
.offer-card-actions button:last-child,
.offer-dialog .offer-secondary { background: #f0e9df; color: #171614; }
.offer-card-actions button:disabled,
.offer-dialog button:disabled { opacity: .55; cursor: not-allowed; }

.offer-empty {
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px;
  border: 1px dashed rgba(120,100,70,.3);
  border-radius: 22px;
  text-align: center;
  color: #746c62;
}
.offer-showcase.is-vacation .offer-empty { color: rgba(255,255,255,.68); border-color: rgba(255,255,255,.2); }

.offer-dialog {
  width: min(900px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: #fffdf8;
  color: #171614;
  box-shadow: 0 35px 120px rgba(0,0,0,.35);
}
.offer-dialog::backdrop { background: rgba(7, 12, 13, .68); backdrop-filter: blur(4px); }
.offer-dialog-shell { padding: clamp(22px, 4vw, 42px); }
.offer-dialog-head {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 24px;
}
.offer-dialog-head h2 { margin: 5px 0 0; font: 400 clamp(38px, 5vw, 62px)/.98 "Italiana", serif; }
.offer-dialog-head p { margin: 0; color: #9a6f3b; font: 700 10px "DM Sans", sans-serif; letter-spacing: .16em; }
.offer-dialog-close { width: 42px; min-width: 42px; padding: 0 !important; background: #eee7dc; color: #171614; font-size: 20px !important; }
.offer-dialog-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr); gap: 28px; }
.offer-dialog-copy > p { color: #6d655b; line-height: 1.75; }
.offer-detail-list { margin: 20px 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.offer-detail-list li { padding: 12px 14px; border-radius: 14px; background: #f5f0e8; line-height: 1.45; }
.offer-detail-list li strong { display: block; }
.offer-dialog-price { padding: 18px; border-radius: 18px; background: #171614; color: #fff; display: flex; justify-content: space-between; gap: 14px; align-items: baseline; }
.offer-dialog-price del { color: rgba(255,255,255,.55); }
.offer-dialog-price strong { font-size: 24px; }
.offer-booking-form { padding: 22px; border-radius: 22px; background: #f2ece3; display: grid; gap: 14px; align-content: start; }
.offer-booking-form h3 { margin: 0 0 4px; font: 400 30px "Italiana", serif; }
.offer-booking-form label { display: grid; gap: 7px; color: #5e5549; font: 700 11px "DM Sans", sans-serif; }
.offer-booking-form input,
.offer-booking-form textarea,
.offer-booking-form select {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d8cdbf;
  border-radius: 13px;
  background: #fff;
  color: #171614;
  padding: 12px 13px;
  font: 500 14px "DM Sans", sans-serif;
}
.offer-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.offer-form-message { min-height: 18px; margin: 0; color: #8d5e25; font: 700 11px "DM Sans", sans-serif; }
.offer-login-note { padding: 13px; border-radius: 13px; background: #fff; color: #665e54; line-height: 1.5; }

@media (max-width: 980px) {
  .offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offer-dialog-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .offer-showcase { padding: 52px 16px; }
  .offer-showcase-head { display: block; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card-media, .offer-card-media img { min-height: 205px; }
  .offer-card-actions { grid-template-columns: 1fr; }
  .offer-dialog { width: calc(100vw - 16px); max-height: calc(100vh - 16px); border-radius: 20px; }
  .offer-dialog-shell { padding: 20px; }
  .offer-form-grid { grid-template-columns: 1fr; }
}
/* OFFERS_AND_PACKAGES_END */
