/* ─── W AZYL Checkout / Cart Styles ─────────────────────────────────────────── */

/* ─── Cart button in header ───────────────────────────────────────────────── */
.azyl-cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2px;
  transition: color .2s;
  flex-shrink: 0;
}
.azyl-cart-btn:hover { color: #D2AA50; }

.azyl-cart-count {
  position: absolute;
  top: 2px; right: 2px;
  background: #D2AA50;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  font-family: 'Poppins', sans-serif;
  pointer-events: none;
}

/* ─── Toast ───────────────────────────────────────────────────────────────── */
.azyl-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: #2a2a2a;
  color: #fff;
  padding: 11px 22px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  z-index: 99999;
  opacity: 0;
  transition: all .3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  pointer-events: none;
}
.azyl-toast--visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.azyl-toast--success { background: #2d6a4f; }
.azyl-toast--error   { background: #b71c1c; }

/* ─── Checkout overlay ────────────────────────────────────────────────────── */
.azyl-checkout {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9500;
  align-items: flex-end;
  justify-content: center;
}
.azyl-checkout.active { display: flex; }

.azyl-checkout__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(3px);
}

.azyl-checkout__modal {
  position: relative;
  z-index: 1;
  background: #fff;
  width: 100%;
  max-width: 680px;
  max-height: 92vh;
  border-radius: 20px 20px 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 -6px 40px rgba(0,0,0,.15);
  animation: azyl-up .3s cubic-bezier(.32,.72,0,1);
}
@media (min-width: 768px) {
  .azyl-checkout { align-items: center; }
  .azyl-checkout__modal { border-radius: 20px; max-height: 86vh; }
}
@keyframes azyl-up {
  from { transform: translateY(32px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ─── Header ──────────────────────────────────────────────────────────────── */
.azyl-checkout__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid #f0ece6;
  flex-shrink: 0;
}
.azyl-checkout__steps {
  display: flex;
  align-items: center;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}
.azyl-checkout__steps::-webkit-scrollbar { display: none; }

.azyl-step { display: flex; align-items: center; gap: 5px; flex-shrink: 0; }
.azyl-step__line { width: 18px; height: 1px; background: #e5ddd0; flex-shrink: 0; }

.azyl-step__num {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid #ddd;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #bbb;
  transition: all .25s;
  flex-shrink: 0;
}
.azyl-step__lbl {
  font-size: 11px;
  font-family: 'Poppins', sans-serif;
  color: #bbb;
  transition: color .25s;
  white-space: nowrap;
}
.azyl-step.active .azyl-step__num { border-color: #D2AA50; background: #D2AA50; color: #fff; }
.azyl-step.active .azyl-step__lbl { color: #1a1a1a; font-weight: 600; }
.azyl-step.done   .azyl-step__num { border-color: #3a7d5a; background: #3a7d5a; color: #fff; }
.azyl-step.done   .azyl-step__lbl { color: #888; }

@media (max-width: 500px) {
  .azyl-step__lbl { display: none; }
  .azyl-step.active .azyl-step__lbl { display: block; }
  .azyl-step__line { width: 10px; }
}

.azyl-close {
  background: #f5f1ed;
  border: none; cursor: pointer;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #777;
  transition: all .2s;
  flex-shrink: 0;
}
.azyl-close:hover { background: #ece7e0; color: #1a1a1a; }

/* ─── Body / Panels ───────────────────────────────────────────────────────── */
.azyl-checkout__body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
}
.azyl-panel {
  display: none;
  padding: 22px 22px 8px;
  animation: azyl-fade .22s ease;
}
.azyl-panel.active { display: block; }
@keyframes azyl-fade {
  from { opacity:0; transform: translateX(8px); }
  to   { opacity:1; transform: translateX(0); }
}
.azyl-title {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 18px;
}

/* ─── Cart items ──────────────────────────────────────────────────────────── */
.azyl-ci {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  background: #faf7f3;
  border: 1px solid #f0ece6;
  border-radius: 11px;
  margin-bottom: 9px;
}
.azyl-ci__info { display: flex; flex-direction: column; gap: 2px; }
.azyl-ci__name { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 500; color: #1a1a1a; }
.azyl-ci__meta { font-family: 'Poppins', sans-serif; font-size: 12px; color: #999; }
.azyl-ci__right { display: flex; align-items: center; gap: 10px; }
.azyl-ci__price { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600; color: #D2AA50; }
.azyl-ci__rm {
  background: none; border: none; cursor: pointer;
  color: #ccc; padding: 4px; border-radius: 4px;
  display: flex; align-items: center; transition: color .15s;
}
.azyl-ci__rm:hover { color: #b71c1c; }

.azyl-cart-empty {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  padding: 36px 20px; color: #bbb; text-align: center;
}
.azyl-cart-empty p { font-family: 'Poppins', sans-serif; font-size: 14px; color: #aaa; margin: 0; }

.azyl-cart-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0 6px;
  border-top: 2px solid #f0ece6;
  margin-top: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px; color: #777;
}
.azyl-cart-total__val { font-size: 20px; font-weight: 700; color: #1a1a1a; }

.azyl-add-more {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%; margin-top: 10px; padding: 10px;
  background: none; border: 1.5px dashed #D2AA50;
  border-radius: 9px; color: #D2AA50;
  font-family: 'Poppins', sans-serif; font-size: 13px;
  cursor: pointer; transition: background .2s;
}
.azyl-add-more:hover { background: #fdf8ee; }

/* ─── Calendar ────────────────────────────────────────────────────────────── */
.azyl-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.azyl-tab {
  display: flex; align-items: center; gap: 5px;
  padding: 7px 13px;
  background: #f5f1ed; border: 2px solid transparent;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif; font-size: 12px;
  color: #666; cursor: pointer; transition: all .2s;
}
.azyl-tab.active { border-color: #D2AA50; color: #1a1a1a; font-weight: 600; }
.azyl-tab.done   { color: #3a7d5a; }

.azyl-cal-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.azyl-cal-nav button {
  background: #f5f1ed; border: none; border-radius: 7px;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #666; transition: all .2s;
}
.azyl-cal-nav button:hover:not(:disabled) { background: #D2AA50; color: #fff; }
.azyl-cal-nav button:disabled { opacity: .3; cursor: default; }
.azyl-cal-nav span {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 600; color: #1a1a1a;
}

.azyl-cal-hdr {
  display: grid; grid-template-columns: repeat(7,1fr);
  gap: 3px; margin-bottom: 6px;
}
.azyl-cal-hdr span {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 10px; font-weight: 600; color: #bbb;
  text-transform: uppercase; padding: 3px 0;
}

.azyl-cal-grid {
  display: grid; grid-template-columns: repeat(7,1fr); gap: 3px;
}
.azyl-cd {
  aspect-ratio: 1;
  border: none; border-radius: 7px; background: none;
  font-family: 'Poppins', sans-serif; font-size: 13px;
  cursor: pointer; color: #333;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.azyl-cd:hover:not(:disabled):not(.azyl-cd--dis) { background: #fdf8ee; color: #D2AA50; }
.azyl-cd--e   { visibility: hidden; }
.azyl-cd--dis { color: #ddd; cursor: default; }
.azyl-cd--today { font-weight: 700; color: #D2AA50; }
.azyl-cd--sel { background: #D2AA50 !important; color: #fff !important; font-weight: 600; }

/* ─── Time slots ──────────────────────────────────────────────────────────── */
.azyl-slots-wrap {
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid #f0ece6;
}
.azyl-slots-lbl {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; color: #999; margin: 0 0 10px;
}
.azyl-slots-loading {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; color: #bbb; padding: 8px 0;
}
.azyl-slots-empty {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; color: #999; padding: 8px 0; line-height: 1.5;
}
.azyl-slots-empty a { color: #D2AA50; font-weight: 600; text-decoration: none; }
.azyl-slots-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(68px,1fr)); gap: 7px;
}
.azyl-slot {
  padding: 9px 6px;
  border: 1.5px solid #e5ddd0; border-radius: 8px;
  background: #fff;
  font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 500;
  color: #333; cursor: pointer; text-align: center;
  transition: all .15s;
}
.azyl-slot:hover:not(:disabled) { border-color: #D2AA50; color: #D2AA50; background: #fdf8ee; }
.azyl-slot--sel  { background: #D2AA50 !important; border-color: #D2AA50 !important; color: #fff !important; }
.azyl-slot--taken { color: #ccc; cursor: default; text-decoration: line-through; background: #fafafa; }

/* ─── Client form ─────────────────────────────────────────────────────────── */
.azyl-form { display: flex; flex-direction: column; gap: 14px; }
.azyl-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .azyl-form-row { grid-template-columns: 1fr; } }

.azyl-fg { display: flex; flex-direction: column; gap: 5px; }
.azyl-fg label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px; font-weight: 500; color: #666;
}
.azyl-fg input, .azyl-fg textarea {
  padding: 11px 13px;
  border: 1.5px solid #e5ddd0; border-radius: 9px;
  font-family: 'Poppins', sans-serif; font-size: 14px;
  color: #1a1a1a; background: #fff;
  outline: none; resize: vertical;
  transition: border-color .2s;
}
.azyl-fg input:focus, .azyl-fg textarea:focus { border-color: #D2AA50; }
.azyl-fg input.err, .azyl-fg textarea.err { border-color: #b71c1c; }

.azyl-chk {
  display: flex; align-items: flex-start; gap: 9px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif; font-size: 12px; color: #666;
  line-height: 1.5;
}
.azyl-chk input[type="checkbox"] { display: none; }
.azyl-chk__box {
  width: 17px; height: 17px; flex-shrink: 0; margin-top: 1px;
  border: 2px solid #ddd; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.azyl-chk input:checked + .azyl-chk__box {
  background: #D2AA50; border-color: #D2AA50;
}
.azyl-chk input:checked + .azyl-chk__box::after {
  content: '';
  width: 4px; height: 8px;
  border: 2px solid #fff; border-top: none; border-left: none;
  transform: rotate(45deg) translateY(-1px);
}
.azyl-chk.err .azyl-chk__box { border-color: #b71c1c; }
.azyl-chk a { color: #D2AA50; }

/* ─── Summary ─────────────────────────────────────────────────────────────── */
.azyl-sum-sec { margin-bottom: 22px; }
.azyl-sum-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: .07em;
  text-transform: uppercase; color: #bbb; margin: 0 0 10px;
}
.azyl-sum-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 13px; background: #faf7f3;
  border-radius: 10px; margin-bottom: 7px; gap: 10px;
}
.azyl-sum-row__l { display: flex; flex-direction: column; gap: 3px; }
.azyl-sum-row__name { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 500; color: #1a1a1a; }
.azyl-sum-row__dt   { font-family: 'Poppins', sans-serif; font-size: 12px; color: #999; }
.azyl-sum-row__p    { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600; color: #D2AA50; white-space: nowrap; }
.azyl-sum-total {
  display: flex; justify-content: space-between;
  padding: 12px 13px 4px;
  border-top: 2px solid #f0ece6; margin-top: 6px;
  font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; color: #1a1a1a;
}
.azyl-sum-client {
  background: #faf7f3; border-radius: 10px; padding: 13px;
  display: flex; flex-direction: column; gap: 7px;
  font-family: 'Poppins', sans-serif; font-size: 13px; color: #555;
}

/* ─── Payment ─────────────────────────────────────────────────────────────── */
.azyl-pay-total {
  display: flex; justify-content: space-between; align-items: center;
  background: #faf7f3; padding: 13px 15px;
  border-radius: 10px; margin-bottom: 16px;
  font-family: 'Poppins', sans-serif; font-size: 13px; color: #777;
}
.azyl-pay-total__val { font-size: 22px; font-weight: 700; color: #1a1a1a; }

.azyl-pay-cards { display: flex; flex-direction: column; gap: 9px; }
.azyl-pay-card { cursor: pointer; }
.azyl-pay-card input[type="radio"] { display: none; }
.azyl-pay-card__inner {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 15px;
  border: 2px solid #e8e0d5; border-radius: 12px;
  background: #fff; transition: all .2s;
}
.azyl-pay-card:hover .azyl-pay-card__inner,
.azyl-pay-card.sel   .azyl-pay-card__inner {
  border-color: #D2AA50; background: #fdf8ee;
}
.azyl-pay-card__ico { color: #D2AA50; flex-shrink: 0; }
.azyl-pay-card__txt { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.azyl-pay-card__txt strong {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 600; color: #1a1a1a;
  display: flex; align-items: center; gap: 7px; flex-wrap: wrap;
}
.azyl-pay-card__txt span {
  font-family: 'Poppins', sans-serif;
  font-size: 11px; color: #aaa;
}
.azyl-badge {
  background: #D2AA50; color: #fff !important;
  font-size: 10px; font-weight: 700;
  padding: 1px 7px; border-radius: 20px;
}
.azyl-pay-card__chk {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 2px solid #ddd; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: transparent; transition: all .2s;
}
.azyl-pay-card.sel .azyl-pay-card__chk { background: #D2AA50; border-color: #D2AA50; color: #fff; }

.azyl-pay-note {
  margin-top: 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px; color: #bbb;
  display: flex; align-items: flex-start; gap: 5px; line-height: 1.5;
}

/* ─── Confirmation ────────────────────────────────────────────────────────── */
.azyl-confirm {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 16px 0 8px;
}
.azyl-confirm__ico { margin-bottom: 14px; }
.azyl-confirm h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px; color: #1a1a1a; margin: 0 0 8px;
}
.azyl-confirm > p {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; color: #777; margin: 0 0 20px;
  max-width: 340px;
}
.azyl-confirm__details { width: 100%; max-width: 440px; text-align: left; margin-bottom: 22px; }
.azyl-conf-list {
  background: #faf7f3; border-radius: 11px; padding: 14px;
  margin-bottom: 12px;
}
.azyl-conf-item {
  display: flex; flex-direction: column; gap: 2px;
  padding: 9px 0; border-bottom: 1px solid #f0ece6;
}
.azyl-conf-item:last-of-type { border-bottom: none; }
.azyl-conf-item strong { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 500; color: #1a1a1a; }
.azyl-conf-item span   { font-family: 'Poppins', sans-serif; font-size: 12px; color: #999; }
.azyl-conf-pay {
  font-family: 'Poppins', sans-serif; font-size: 12px; color: #666;
  padding-top: 9px; border-top: 1px solid #f0ece6; margin-top: 1px;
}
.azyl-conf-tel {
  font-family: 'Poppins', sans-serif; font-size: 12px; color: #999; margin: 0;
}
.azyl-conf-tel a { color: #D2AA50; }

/* ─── Footer nav buttons ──────────────────────────────────────────────────── */
.azyl-checkout__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid #f0ece6;
  background: #fff; flex-shrink: 0;
}
.azyl-btn-back {
  display: flex; align-items: center; gap: 5px;
  background: none; border: 1.5px solid #e0d8ce;
  padding: 10px 18px; border-radius: 9px;
  font-family: 'Poppins', sans-serif; font-size: 13px; color: #777;
  cursor: pointer; transition: all .2s;
}
.azyl-btn-back:hover { border-color: #D2AA50; color: #D2AA50; }

.azyl-btn-next {
  display: flex; align-items: center; gap: 7px;
  background: #D2AA50; border: none;
  padding: 11px 26px; border-radius: 9px;
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600;
  color: #fff; cursor: pointer;
  margin-left: auto;
  transition: all .2s;
}
.azyl-btn-next:hover:not(:disabled) { background: #bf9a3d; transform: translateY(-1px); }
.azyl-btn-next:disabled { opacity: .45; cursor: default; transform: none; }

/* ─── Body scroll lock ────────────────────────────────────────────────────── */
body.azyl-no-scroll { overflow: hidden; }

/* ─── CTA buttons ─────────────────────────────────────────────────────────── */
.azyl-add-btn { display: inline-flex; align-items: center; }

/* ─── Inline booking CTA — Atelier Card ──────────────────────────────────── */
.contact-form-wrapper:has(.azyl-inline-cta) {
  padding: 0;
  overflow: hidden;
  background: transparent;
}
.azyl-inline-cta {
  background: #fdf9f3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.04), 0 8px 32px rgba(0,0,0,.07),
              inset 0 0 0 1px rgba(210,170,80,.14);
  font-family: 'Poppins', sans-serif;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.azyl-inline-cta__bar {
  height: 3px;
  background: linear-gradient(90deg, #b8922d 0%, #D2AA50 35%, #e8c97a 55%, #D2AA50 75%, #b8922d 100%);
}
.azyl-inline-cta__body {
  padding: 30px 32px 34px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.azyl-inline-cta__eyebrow {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #D2AA50;
  font-weight: 600;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.azyl-inline-cta__eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(210,170,80,.22);
}
.azyl-inline-cta__name {
  font-family: 'Playfair Display', serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  color: #004F3C;
  margin: 0 0 8px;
  line-height: 1.25;
}
.azyl-inline-cta__sub {
  font-size: 13px;
  color: #666666;
  margin: 0 0 24px;
  line-height: 1.6;
}
.azyl-inline-cta__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.azyl-inline-cta__divider span {
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,.09);
}
.azyl-inline-cta__diamond {
  width: 7px; height: 7px;
  background: #D2AA50;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.azyl-inline-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 1rem 2rem;
  background: #D2AA50;
  border: 2px solid #D2AA50;
  border-radius: 9999px;
  color: #004F3C;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .15s, box-shadow .2s;
  margin-bottom: 12px;
}
.azyl-inline-cta__btn:hover {
  background: #E0BE68;
  border-color: #E0BE68;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,79,60,.12);
}
.azyl-inline-cta__btn-text { position: relative; }
.azyl-inline-cta__btn-arrow { transition: transform .2s; flex-shrink: 0; }
.azyl-inline-cta__btn:hover .azyl-inline-cta__btn-arrow { transform: translateX(3px); }
.azyl-inline-cta__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0.75rem 2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #004F3C;
  text-decoration: none;
  border: 2px solid #004F3C;
  border-radius: 9999px;
  letter-spacing: 0.05em;
  transition: background .2s, color .2s;
}
.azyl-inline-cta__phone:hover { background: #004F3C; color: #fff; }

/* ─── SVG inline icons in summary/confirm ─────────────────────────────────── */
.azyl-ic { vertical-align: middle; flex-shrink: 0; margin-right: 4px; }

/* ─── Booking CTA section (replaces old inline booking-widget) ────────────── */
.azyl-booking-cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #1a1610 0%, #2a2218 50%, #1e1a12 100%);
  position: relative;
  overflow: hidden;
}
.azyl-booking-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(210,170,80,.12) 0%, transparent 70%);
  pointer-events: none;
}
.azyl-booking-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.azyl-booking-cta__text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
}
.azyl-booking-cta__text p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,.6);
  margin: 0;
}
.azyl-booking-cta__btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.azyl-booking-cta__btns .btn-primary {
  background: #D2AA50;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
}
.azyl-booking-cta__btns .btn-primary:hover {
  background: #bf9a3d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(210,170,80,.35);
}
.azyl-booking-cta__btns .btn-outline {
  border: 1.5px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.8);
  padding: 13px 22px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
}
.azyl-booking-cta__btns .btn-outline:hover {
  border-color: rgba(255,255,255,.6);
  color: #fff;
}
@media (max-width: 640px) {
  .azyl-booking-cta { flex-direction: column; text-align: center; }
  .azyl-booking-cta__btns { justify-content: center; }
  .azyl-booking-cta__text h2 { font-size: 24px; }
}
