:root{

    --bg:#F1EEEA;
    --card:#ffffff;
    --black:#1B1B1A;
    --text:#5F5B57;
    --border:#E6DED2;
    --gold:#C7A45A;
    --gold-dark:#B18E43;
    --radius:22px;
    --shadow:
        0 12px 40px rgba(0,0,0,.06);

}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f5f2ec;
  color: #181818;
  font-family: 'Montserrat', Arial, sans-serif;
}

.ak-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 18px 60px;
}

.ak-header {
  height: 78px;
  background: #fff;
  border: 1px solid #e8dfd2;
  padding: 0 22px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.ak-logo img {
  height: 55px;
  display: block;
}

.ak-nav {
  display: flex;
  gap: 28px;
}

.ak-nav a,
.ak-header-right a {
  color: #181818;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.ak-header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 800;
}

.ak-call {
  width: 38px;
  height: 38px;
  background: #181818;
  color: #fff !important;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.ak-photo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 245px 245px;
  gap: 10px;
  border-radius: 12px;
  overflow: hidden;
  background: #e8dfd2;
}

.ak-photo-grid button {
  border: 0;
  padding: 0;
  background: #ddd;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.ak-photo-main {
  grid-row: span 2;
}

.ak-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .35s ease;
}

.ak-photo-grid button:hover img {
  transform: scale(1.04);
  filter: brightness(.92);
}

.ak-photo-last::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}

.ak-photo-last span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  background: rgba(255,255,255,.94);
  color: #181818;
  padding: 11px 17px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
}

.ak-intro {
  max-width: 780px;
  margin: 38px 0 28px;
}

.ak-intro span,
.ak-step-head span {
  color: #b68a35;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ak-intro h1 {
  margin: 12px 0;
  font-size: 46px;
  line-height: 1.05;
  letter-spacing: -1px;
}

.ak-intro p {
  color: #666;
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.ak-booking-card {
  background: #fff;
  border: 1px solid #e8dfd2;
  border-radius: 12px;
  padding: 20px 30px;
  box-shadow: 0 20px 55px rgba(0,0,0,.04);
  margin-top: 10px;
}

.ak-step-head {
  margin-bottom: 18px;
}

.ak-step-head h2 {
  margin: 7px 0 0;
  font-size: 28px;
}

.ak-step-head.small {
  margin-top: 30px;
}

.ak-date-row {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 16px;
  align-items: end;
}

.ak-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
}

.ak-field input,
.ak-field select {
  width: 100%;
  height: 56px;
  border: 1px solid #ddd6cc;
  border-radius: 16px;
  padding: 0 16px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
}
.ak-field input,
.ak-field textarea {

  background: #F9F9F9;

}

.ak-field input:focus,
.ak-field select:focus {
  border-color: #b68a35;
  box-shadow: 0 0 0 4px rgba(182,138,53,.12);
}

.ak-check-btn,
.ak-continue {
  height: 56px;
  border: 0;
  border-radius: 12px;
  background: #181818;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.ak-message {
  margin-top: 18px;
  padding: 14px 16px;
  background: #faf8f4;
  border: 1px solid #e8dfd2;
  border-radius: 14px;
  color: #666;
  font-size: 14px;
}

.ak-message.success {
  background: #f1faf3;
  border-color: #cdebd3;
  color: #1f7a35;
}

.ak-message.error {
  background: #fff2f0;
  border-color: #ffd0ca;
  color: #b42318;
}

.hidden {
  display: none;
}

.ak-pass-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ak-pass-card {
  position: relative;
  display: flex;
  flex-direction: column;
  /*min-height: 380px;*/
  min-height: 250px;
  padding: 24px;
  background: #fff;
  background: #f9f9f9;
  border: 1px solid #e6ded2;
  border-radius: 12px;
  cursor: pointer;
  transition: .25s;
  padding: 18px;
}

.ak-pass-card:hover,
.ak-pass-card.active {
  transform: translateY(-3px);
  border-color: #b68a35;
  background: #fffaf1;
}

.ak-pass-card input {
  display: none;
}


.ak-pass-card h3 {
  margin: 0;
  font-size: 23px;
}

.ak-pass-card p {
  color: #b68a35;
  font-weight: 700;
  margin: 8px 0px;
}

.ak-pass-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.ak-pass-card li {
  padding: 8px 0;
  border-bottom: 1px solid #f0e8dc;
  color: #555;
  font-size: 14px;
  font-weight: 500;
}

.ak-pass-card li i {
  color: #b68a35;
  margin-right: 8px;
}

.ak-pass-card strong {
  margin-top: auto;
  font-size: 27px;
}

.ak-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #181818;
  color: #fff;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.ak-booking-options {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  margin-top: 26px;
}

.ak-counter {
  height: 74px;
  border: 1px solid #ddd6cc;
  border-radius: 12px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F9F9F9;
}

.ak-counter strong,
.ak-counter span {
  display: block;
}

.ak-counter span {
  color: #777;
  font-size: 12px;
  margin-top: 4px;
}

.ak-counter-controls {
  display: flex;
  align-items: center;
  gap: 9px;
}

.ak-counter-controls button {
  width: 36px;
  height: 36px;
  border: 1px solid #ddd6cc;
  border-radius: 50%;
  background: #fff;
  font-size: 20px;
  cursor: pointer;

}

.ak-counter-controls input {
  width: 30px;
  border: 0;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  background: none;
}

.ak-price-summary {
  margin-top: 26px;
  background: #141414;
  color: #fff;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ak-price-summary span,
.ak-price-summary small {
  color: #aaa;
  display: block;
}

.ak-price-summary strong {
  display: block;
  margin-top: 4px;
  font-size: 22px;
}

.ak-total {
  text-align: right;
}

.ak-total strong {
  font-size: 30px;
}

.ak-continue {
  width: 100%;
  margin-top: 18px;
}

.ak-continue:hover,
.ak-check-btn:hover {
  background: #b68a35;
}

.ak-footer {
  margin-top: 48px;
  background: #fff;
  border: 1px solid #e8dfd2;
  border-radius: 12px;
/*  padding: 28px;
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 0.9fr 1.2fr;
  gap: 28px;*/
}



.ak-footer img {
  height: 40px;

}

.ak-footer .footer-brand img {
  /*height: 40px;*/
    display: block;
  width: auto;
  height: 58px;
  margin-bottom: 14px;
  object-fit: contain;
}

.ak-footer p {
  color: #666;
  max-width: 420px;
  font-size: 85%;

  margin: 0;
  color: var(--text);
  font-size: 12px;
  line-height: 1.75;
}

.ak-footer strong,
.ak-footer a {
  display: block;
}

.ak-footer strong{
  display: block;
  margin-bottom: 12px;
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.ak-footer a {
  color: #666;
  text-decoration: none;
  display: block;
  width: fit-content;
  margin: 2px 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease;
}

@media (max-width: 900px) {
  .ak-nav {
    display: none;
  }

  .ak-photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 150px 150px;
  }

  .ak-photo-main {
    grid-column: span 2;
    grid-row: span 1;
  }

  .ak-intro h1 {
    font-size: 34px;
  }

  .ak-date-row,
  .ak-pass-grid,
  .ak-booking-options,
  .ak-footer {
    grid-template-columns: 1fr;
  }

  .ak-price-summary {
    display: block;
  }

  .ak-total {
    text-align: left;
    margin-top: 18px;
  }
}

.ak-times-title{

    margin-top:22px;
    margin-bottom:14px;

    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:2px;

    color:#8b8b8b;

}

.ak-times{

    display:flex;
    flex-wrap:wrap;

    gap:12px;

}

.ak-times .time{

    border:1px solid #d9d0c5;

    background:#fff;

    color:#222;

    height:46px;

    min-width:92px;

    padding:0 22px;

    border-radius:999px;

    cursor:pointer;

    font-size:15px;

    font-weight:700;

    transition:.25s;

}


.ak-times .time:hover{

    background:#181818;

    color:white;

    border-color:#181818;

}

.ak-times .time.active{

    background:#b68a35;

    color:white;

    border-color:#b68a35;

}


.ak-footer-brand img {

  display: block;
  width: auto;
  height: 58px;
  margin-bottom: 14px;
  object-fit: contain;
}



.ak-footer-brand p,

.ak-footer-col p {

  color: #bdbdbd;

  line-height: 1.7;

  margin-top: 16px;

}

.ak-footer-payments img {
  height: 26px;
  background: #fff;
  padding: 4px;

}

.ak-footer-payments img:last-child {
    height: 22px;
}

.ak-step{

    margin-top:60px;

}

.ak-step-progress{

    display:flex;

    align-items:center;

    margin-bottom:45px;

}

.ak-progress-item{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:12px;

}

.circle{

    width:44px;

    height:44px;

    border-radius:50%;

    border:2px solid #ddd;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:700;

    background:white;

}

.ak-progress-item.done .circle{

    background:#181818;

    color:white;

    border-color:#181818;

}

.ak-progress-item.active .circle{

    background:#b68a35;

    border-color:#b68a35;

    color:white;

}

.progress-line{

    flex:1;

    height:2px;

    background:#e4ddd2;

    margin:0 18px;

}

.ak-step-layout{

    display:grid;

    grid-template-columns:340px 1fr;

    gap:40px;

}

.ak-summary{

    position:sticky;
    top:25px;
    background:white;
    border:1px solid #ece3d7;
    border-radius:12px;
    padding:28px;
    height:max-content;

}

.summary-label{

    font-size:12px;

    color:#b68a35;

    text-transform:uppercase;

    letter-spacing:2px;

    font-weight:800;

}



.summary-item{

    display:flex;

    gap:14px;

    align-items:center;

    margin-bottom:18px;

    color:#555;

}

/*.summary-total{

    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:18px;

}

.summary-total strong{

    font-size:30px;

}*/

.ak-form-card{

    background:white;
    border:1px solid #ece3d7;
    border-radius:24px;
    padding:20px;

}

.mini-title{

    color:#b68a35;

    font-size:12px;

    letter-spacing:2px;

    text-transform:uppercase;

    font-weight:800;

}

.ak-form-card h2{

    margin:10px 0;

    font-size:36px;

}

.ak-form-card h3{

  font-size: 24px !important;
  font-weight: 700 !important;
  margin-top: 10px !important;

}



.ak-form-card p{

    color:#666;

    margin-bottom:35px;

}

.ak-form-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

.ak-field.full{

    grid-column:1 / -1;

}

.ak-field textarea{

    resize:vertical;

    border:1px solid #ddd6cc;

    border-radius:16px;

    padding:16px;

    font-family:inherit;

}

.phone-field{

    display:flex;

}

.phone-field select{

    width:130px;

    border-right:none;

    border-radius:16px 0 0 16px;

}

.phone-field input{

    border-radius:0 16px 16px 0;

}

.step-buttons{

    margin-top:35px;

    display:flex;

    justify-content:space-between;

}

.step-buttons button{

    height:56px;

    padding:0 28px;

    border-radius:16px;

    font-weight:700;

    cursor:pointer;

}

.secondary{

    background:white;

    border:1px solid #ddd;

}

.primary{

    background:#181818;

    color:white;

    border:none;

}

.primary:hover{

    background:#b68a35;

}

.ak-step {
  margin-top: 46px;
  padding-top: 36px;
  border-top: 1px solid #eee7dd;
}

.ak-step-progress {
  display: flex;
  align-items: center;
  margin-bottom: 38px;
}

.ak-progress-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #777;
  font-size: 12px;
  font-weight: 800;
}

.circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #ddd6cc;
  background: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.ak-progress-item.done .circle {
  background: #181818;
  color: #fff;
  border-color: #181818;
}

.ak-progress-item.active .circle {
  background: #b68a35;
  color: #fff;
  border-color: #b68a35;
}

.progress-line {
  flex: 1;
  height: 2px;
  background: #e8dfd2;
  margin: 0 14px;
}

.ak-step-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
}

.ak-summary,
.ak-form-card {
  background: #fff;
  border: 1px solid #e8dfd2;
  border-radius:12px;
  padding: 20px;
}

.summary-label,
.mini-title {
  color: #b68a35;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ak-summary h3 {
  margin: 0px;
  font-size: 22px !important;
}

.summary-item {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #555;
}

.summary-item i {
  color: #b68a35;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.summary-total span{
  color: var(--gold) !important;
  margin-top: 10px;
  margin-bottom: 0px !important;
  font-size: 30px !important;
  font-weight: 700;
}

/*.summary-total strong {
  font-size: 28px;
}*/

.ak-form-card h2 {
  margin: 10px 0;
  font-size: 34px;
}

.ak-form-card p {
  color: #666;
  margin-bottom: 20px;
}

.ak-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.ak-field.full {
  grid-column: 1 / -1;
}

.ak-field textarea {
  width: 100%;
  border: 1px solid #ddd6cc;
  border-radius: 16px;
  padding: 16px;
  font-family: inherit;
  outline: none;
}

.phone-field {
  display: flex;
}

.phone-field select {
  width: 130px;
  border-radius: 16px 0 0 16px;
  border-right: 0;
}

.phone-field input {
  border-radius: 0 16px 16px 0;
}

.step-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  gap: 16px;
}

.step-buttons button {
  height: 56px;
  border-radius: 16px;
  padding: 0 26px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
}

.secondary {
  background: #fff;
  border: 1px solid #ddd6cc;
  color: #181818;
}

.primary {
  background: #181818;
  border: 0;
  color: #fff;
}

.primary:hover {
  background: #b68a35;
}

@media (max-width: 900px) {
  .ak-step-layout,
  .ak-form-grid {
    grid-template-columns: 1fr;
  }

  .ak-step-progress {
    overflow-x: auto;
  }
}



.ak-payment-layout{

display:grid;

grid-template-columns:330px 1fr;

gap:35px;

}

.ak-payment-card{

background:#fff;

border:1px solid #e8dfd2;

border-radius:26px;

padding:35px;

}

.payment-header h2{

margin:10px 0;

font-size:34px;

}

.payment-header p{

color:#666;

margin-bottom:30px;

}

.payment-security{

display:flex;

gap:15px;

margin-bottom:30px;

flex-wrap:wrap;

}

.secure-item{

background:#faf7f2;

border:1px solid #ece3d7;

padding:10px 16px;

border-radius:999px;

font-size:14px;

font-weight:700;

display:flex;

align-items:center;

gap:8px;

}

.secure-item i{

color:#b68a35;

}

.payment-frame{

border:1px solid #ece3d7;

border-radius:22px;

overflow:hidden;

background:white;

height:620px;

margin-bottom:25px;

}

.payment-frame iframe{

width:100%;

height:100%;

border:none;

}

.check-line{

display:flex;

align-items:flex-start;

gap:12px;

margin-bottom:18px;

font-size:14px;

color:#555;

cursor:pointer;

}

.check-line input{

margin-top:3px;

width:18px;

height:18px;

}

.payment-btn{

font-size:18px;

padding:0 40px;

}

.payment-btn i{

margin-right:10px;

}

.summary-price{

display:flex;

flex-direction:column;

gap:15px;

}

.summary-price div{

display:flex;

justify-content:space-between;

}

@media(max-width:900px){

.ak-payment-layout{

grid-template-columns:1fr;

}

.payment-frame{

height:520px;

}

}









.daypass-checkout {
  max-width: 1220px;
  margin: 0 auto;
  padding: 24px 18px 50px;
}

.checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 38px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #181818;
  color: #b68a35;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.brand strong {
  display: block;
  font-size: 15px;
}

.brand span {
  display: block;
  font-size: 12px;
  color: #777;
  margin-top: 3px;
}

.secure-head {
  background: #fff;
  border: 1px solid #e8dfd2;
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 700;
}

.checkout-title {
  text-align: center;
  margin-bottom: 34px;
}

.checkout-title span {
  color: #b68a35;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 800;
}

.checkout-title h1 {
  margin: 10px 0 8px;
  font-size: 42px;
  letter-spacing: -1px;
}

.checkout-title p {
  margin: 0;
  color: #777;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 26px;
  align-items: start;
}

.summary-card,
.payment-card {
  background: #fff;
  border: 1px solid #e8dfd2;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.04);
}

.pass-image {
  height: 245px;
  background: #ddd;
}

.pass-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.summary-content {
  padding: 26px;
}

.pass-label {
  display: inline-block;
  background: #faf5ea;
  color: #b68a35;
  border: 1px solid #eadcc5;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.summary-card h2 {
  margin: 16px 0 5px;
  font-size: 26px;
}

.location {
  margin: 0;
  color: #777;
}

.summary-list {
  margin-top: 24px;
  border-top: 1px solid #eee7dd;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #eee7dd;
}

.summary-item span {
  color: #777;
}

.summary-item strong {
  text-align: right;
}

.included-box,
.client-box {
  margin-top: 22px;
  padding: 20px;
  background: #faf8f4;
  border: 1px solid #eee7dd;
  border-radius: 18px;
}

.included-box h3,
.client-box h3 {
  margin: 0 0 14px;
  font-size: 16px;
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}

.client-box strong,
.client-box span {
  display: block;
}

.client-box span {
  margin-top: 5px;
  color: #777;
  font-size: 13px;
}

.total-box {
  margin-top: 24px;
  background: #181818;
  color: #fff;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-box span {
  display: block;
  font-size: 13px;
  color: #cfcfcf;
}

.total-box small {
  display: block;
  margin-top: 4px;
  color: #999;
}

.total-box strong {
  font-size: 26px;
}

.payment-card {
  padding: 30px;
  position: sticky;
  top: 20px;
}

.payment-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.payment-top span {
  color: #b68a35;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.payment-top h2 {
  margin: 7px 0 0;
  font-size: 28px;
}

.payment-top p {
  margin: 0;
  color: #777;
}

.payment-lock {
  width: 48px;
  height: 48px;
  background: #faf8f4;
  border: 1px solid #eee7dd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 20px 0;
}

.payment-methods span {
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid #e8dfd2;
  background: #faf8f4;
  font-size: 12px;
  font-weight: 800;
}

.iframe-card {
  /*border: 1px solid #e8dfd2;*/
  /*border-radius: 22px;*/
  overflow: hidden;
  background: #fff;
}

.paywall-frame {
  display: block;
  width: 100%;
  height: 620px;
  border: 0;
  background: #fff;
}

.payment-note {
  margin-top: 18px;
  background: #faf8f4;
  border: 1px solid #eee7dd;
  border-radius: 16px;
  padding: 14px;
  color: #666;
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 950px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .payment-card {
    position: static;
  }

  .checkout-title h1 {
    font-size: 32px;
  }

  .paywall-frame {
    height: 720px;
  }
}

.btn-cancel{
  height: 56px;
  border-radius: 16px;
  padding: 0 26px;
  font-family: inherit;
  font-weight: 900;
  cursor: pointer;
  background: #fff;
  border: 1px solid #ddd6cc;
  color: #181818;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#buttonsRow .cancel_button_container{
    display: flex!important;
    justify-content: flex-start!important;
}

#buttonsRow .pay_button_container{
    display: flex!important;
    justify-content: flex-end!important;
}

/************************************************/

.product-description{

    color:var(--text)!important;
    line-height:1.6;
  margin: 0px !important;
  line-height: 1.6;
  font-size: 12px !important;
  font-weight: 600 !important;
  border-bottom: 1px solid #f0e9df !important;
  padding: 12px 0px !important;
  color: #5f5b57 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.55 !important;

}

/************************************************/

.product-description strong{

    color:var(--black);

}

#experiences .ak-step-head h2{
  margin: 0px!important;
}

.iframe-card{
    position: relative;
    width: 100%;
    min-height: 720px;      /* Fixed height */
    /*border-radius: 20px;*/
    overflow: hidden;
    background: #fff;
}

.paywall-frame{
    width:100%;
    height:720px;           /* Fixed height */
    border:0;
    display:block;
}

.paywall-loader{
    position:absolute;
    inset:0;
    background:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:20px;
    z-index:20;
    transition:.3s;
}

.paywall-loader.hidden{
    opacity:0;
    visibility:hidden;
}

.loader{
    width:54px;
    height:54px;
    border:4px solid #e5e5e5;
    border-top-color:#b18b45;
    border-radius:50%;
    animation:spin .8s linear infinite;
}

@keyframes spin{
    to{
        transform:rotate(360deg);
    }
}


.ak-confirmation{
    max-width:900px;
    margin:60px auto 20px;
}

.ak-confirmation-card{
    margin:35px 0;
    padding:32px;
    border:1px solid #e8dfd2;
    border-radius:20px;
    background:#fff;
}

.confirmation-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 0;
    border-bottom:1px solid #f1ece4;
}

.confirmation-row:last-child{
    border-bottom:0;
}

.confirmation-row.total{
    margin-top:10px;
    padding-top:22px;
    font-size:22px;
    font-weight:700;
}

.confirmation-actions{
    display:flex;
    justify-content:space-between;
    gap:20px;
    margin-top:40px;
}

.confirmation-actions .secondary,
.confirmation-actions .primary{
    width:auto;
    min-width:220px;
    height:56px;
    display:inline-flex;
    justify-content:center;
    align-items:center;
}

.confirmation-hero{
    text-align:center;
    max-width:700px;
    margin:20px auto 50px;
}

.confirmation-icon{
    width:90px;
    height:90px;
    margin:0 auto 24px;
    border-radius:50%;
    background:#eaf8ef;
    color:#1e9d52;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
}

.confirmation-status{
    display:inline-block;
    padding:8px 18px;
    border-radius:999px;
    background:#eef8f2;
    color:#1e9d52;
    font-weight:700;
    text-transform:uppercase;
    font-size:13px;
    letter-spacing:.08em;
    margin-bottom:20px;
}

.confirmation-hero h1{
    font-size:52px;
    font-weight:800;
    margin:18px 0;
    color:#181818;
}

.confirmation-hero p{
    max-width:600px;
    margin:auto;
    font-size:20px;
    line-height:1.7;
    color:#6d6d6d;
}



.confirm-hero{

    position:relative;

    border-radius:24px;

    overflow:hidden;

    height:420px;

    margin:40px 0;

}

.confirm-hero img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.confirm-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(rgba(0,0,0,.15),rgba(0,0,0,.65));

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:60px;

    color:#fff;

}

.confirm-overlay h1{

    font-size:54px;

    margin:18px 0;

    color:#fff;

}

.confirm-overlay p{

    font-size:20px;

    max-width:700px;

    line-height:1.7;

    color:#fff;

}

.confirm-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    width:max-content;

    background:#fff;

    color:#14944c;

    padding:12px 22px;

    border-radius:999px;

    font-weight:700;

}

.confirm-grid{

    display:grid;

    grid-template-columns:1fr 420px;

    gap:40px;

}

.confirm-card{

    background:#fff;

    border:1px solid #ece2d6;

    border-radius:22px;

    padding:35px;

    margin-bottom:30px;

}

.confirm-card h2{

    margin-bottom:25px;

}

.confirm-row{

    display:flex;

    justify-content:space-between;

    padding:18px 0;

    border-bottom:1px solid #efe7dd;

}

.confirm-row:last-child{

    border-bottom:none;

}

.confirm-row strong{

    font-weight:700;

}

.arrival-item{

    display:flex;

    gap:15px;

    margin:20px 0;

    align-items:flex-start;

}

.arrival-item i{

    color:#c89734;

    margin-top:4px;

}

.experience-list{

    list-style:none;

    padding:0;

    margin:0;

}

.experience-list li{

    display:flex;

    gap:14px;

    margin:18px 0;

}

.experience-list i{

    color:#0fa958;

}

.confirm-gallery{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:14px;

}

.confirm-gallery img{

    width:100%;

    aspect-ratio:1;

    object-fit:cover;

    border-radius:18px;

}

.confirm-buttons{

    display:flex;

    justify-content:space-between;

    margin-top:50px;

}

.ak-photo-main{
    overflow:hidden;
}

.hero-video{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    border-radius:inherit;

    transform:scale(1.01);
}


.availability{
    margin-top:14px;
}

.status{

    display:inline-flex;
    align-items:center;
    gap:6px;

    padding:6px 12px;

    border-radius:999px;

    font-size:13px;
    font-weight:700;

}

.status.available{
    background:#e8f8ee;
    color:#1b8b47;
}

.status.limited{
    background:#fff4df;
    color:#c97d00;
}

.status.soldout{
    background:#ffe5e5;
    color:#d92d20;
}




.btn-loading{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

.btn-spinner{
    width:18px;
    height:18px;
    border:2px solid rgba(255,255,255,.35);
    border-top-color:#fff;
    border-radius:50%;
    animation:btnSpin .8s linear infinite;
}

@keyframes btnSpin{
    to{
        transform:rotate(360deg);
    }
}

#checkAvailabilityBtn:disabled{
    opacity:.8;
    cursor:not-allowed;
}


.ak-bottom-bar{
    display:grid;
    grid-template-columns:3fr 1fr;
    gap:18px;
    align-items:stretch;
    margin-top:26px;
}

.ak-bottom-bar .ak-price-summary{
    margin-top:0;
    height:100%;
}

.ak-bottom-bar form{
    display:flex;
}

.ak-bottom-bar .ak-continue{
    width:100%;
    height:100%;
    margin-top:0;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
}

@media (max-width: 900px){

    .ak-bottom-bar{
        grid-template-columns:1fr;
    }

    .ak-bottom-bar .ak-continue{
        height:56px;
    }

}

.ak-bottom-bar{

    display:grid;

    grid-template-columns:1fr 220px;

    gap:20px;

    align-items:end;

}

/*.ak-bottom-bar{
    display:grid;
    grid-template-columns:3fr 1fr;
    gap:18px;
    align-items:end; /* Align children to the bottom */
}*/

.ak-bottom-bar .ak-price-summary{
    margin-top:26px;
}

.ak-bottom-bar form{
    display:flex;
    align-items:flex-end;
}

.ak-bottom-bar .ak-continue{
    width:100%;
    height:56px;      /* Keep the original button height */
    margin:0;
}

#step1Form{
  margin: 0px;
}

.ak-continue:disabled {
    opacity: .5;
    cursor: not-allowed;
    pointer-events: none;
}

#continuePaymentButton:disabled {
    opacity: .5;
    cursor: not-allowed;
    pointer-events: none;
}


.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  /*padding: 17px 36px;*/
  padding: 16px 30px;
  color: var(--text);
  background: #faf8f4;
  border-top: 1px solid #efe8df;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  font-size: 11px;
}

.footer-bottom {
  color: var(--text);
  font-size: 11px;
}
.footer-main{
  display: grid;
  grid-template-columns: 1.6fr repeat(3, minmax(130px, .8fr));
  gap: 42px;
  padding: 30px;
}



.payment-failed-card {
    width: 100%;
    padding: 42px 28px;
    text-align: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.payment-failed-icon {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    color: #b42318;
    background: #fff2f0;
    border: 1px solid #ffd0ca;
    border-radius: 50%;
    font-size: 28px;
}

.payment-failed-label {
    display: block;
    margin-bottom: 10px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.payment-failed-card h3 {
    margin: 0 0 12px;
    color: var(--black);
    font-size: 28px;
}

.payment-failed-card p {
    max-width: 520px;
    margin: 0 auto 26px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
}

.payment-failed-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-failed-actions button {
    min-height: 52px;
    padding: 0 22px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.payment-failed-actions .primary {
    color: #fff;
    background: var(--black);
    border: 1px solid var(--black);
}

.payment-failed-actions .primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

.payment-failed-actions .secondary {
    color: var(--black);
    background: #fff;
    border: 1px solid var(--border);
}

.payment-failed-actions .secondary:hover {
    background: var(--bg);
}

@media (max-width: 600px) {
    .payment-failed-card {
        padding: 32px 18px;
    }

    .payment-failed-actions {
        flex-direction: column;
    }

    .payment-failed-actions button {
        width: 100%;
    }
}

.payment-failed-card {
    margin-bottom: 20px;
}

.ak-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ak-header-select {
    height: 38px;
    min-width: 66px;
    padding: 0 28px 0 11px;
    border: 1px solid #e6ded2;
    border-radius: 999px;
    background-color: #fff;
    color: #1b1b1a;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    outline: none;
}

.ak-header-select:hover,
.ak-header-select:focus {
    border-color: #c7a45a;
    box-shadow: 0 0 0 3px rgba(199, 164, 90, 0.12);
}

@media (max-width: 600px) {
    .ak-header {
        padding: 0 12px;
    }

    .ak-header-right {
        gap: 6px;
    }

    .ak-header-select {
        min-width: 60px;
        padding-left: 9px;
    }
}


/* =========================================================
   STEP 1 - TABLET AND MOBILE
   Add after daypass-flow.css
   ========================================================= */

html {
    -webkit-text-size-adjust: 100%;
}

img,
iframe {
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

@media (max-width: 900px) {
    .ak-page {
        width: 100%;
        max-width: none;
        padding-inline:
            max(16px, env(safe-area-inset-left))
            max(16px, env(safe-area-inset-right));
        overflow: hidden;
    }

    /* Header */

    .ak-header {
        min-height: 68px;
        padding: 10px 14px;
        gap: 12px;
        border-radius: 14px;
    }

    .ak-logo {
        min-width: 0;
    }

    .ak-logo img {
        width: auto;
        max-width: 125px;
        height: 47px;
        object-fit: contain;
    }

    .ak-header-right {
        gap: 6px;
        margin-left: auto;
    }

    .ak-header-select {
        min-width: 62px;
        height: 40px;
        padding: 0 23px 0 9px;
        font-size: 12px;
        border-radius: 10px;
    }

    .ak-call {
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
    }

    /* Gallery */

    .ak-photo-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.55fr);
        grid-template-rows: 150px 150px;
        gap: 7px;
        margin-top: 14px;
        border-radius: 17px;
        overflow: hidden;
    }

    .ak-photo-main {
        grid-row: 1 / 3;
    }

    .ak-photo-grid button,
    .ak-photo-grid img {
        width: 100%;
        height: 100%;
    }

    .ak-photo-grid img {
        display: block;
        object-fit: cover;
    }

    /* Introduction */

    .ak-intro {
        padding: 32px 4px 24px;
    }

    .ak-intro h1 {
        max-width: 720px;
        font-size: clamp(30px, 7vw, 48px);
        line-height: 1.08;
        letter-spacing: -1.3px;
    }

    .ak-intro p {
        font-size: 14px;
    }

    /* Cards */

    .ak-booking-card {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .ak-step-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ak-summary {
        order: 2;
    }

    .ak-form-card {
        order: 1;
    }

    .ak-pass-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ak-bottom-bar {
        gap: 18px;
    }

    /* Footer */

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 22px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    body {
        overflow-x: hidden;
    }

    .ak-page {
        padding-inline:
            max(12px, env(safe-area-inset-left))
            max(12px, env(safe-area-inset-right));
    }

    /* Header */

    .ak-header {
        position: relative;
        min-height: 62px;
        padding: 8px 10px;
        gap: 7px;
    }

    .ak-logo img {
        max-width: 96px;
        height: 42px;
    }

    .ak-header-right {
        gap: 5px;
    }

    .ak-header-select {
        min-width: 80px;
        width: 54px;
        height: 38px;
        padding: 0 17px 0 6px;
        font-size: 10px;
        font-weight: 700;
    }

    .ak-call {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
        font-size: 13px;
    }

    /* Mobile gallery */

    .ak-photo-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 205px 105px;
        gap: 6px;
        border-radius: 15px;
    }

    .ak-photo-main {
        /*grid-column: 1 / -1;*/
        grid-row: 1;
    }

/*    .ak-photo-grid > button:not(.ak-photo-main) {
        grid-row: 2;
    }*/

    /* Introduction */

    .ak-intro {
        padding: 26px 4px 20px;
        text-align: left;
    }

    .ak-intro > span {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .ak-intro h1 {
        margin: 8px 0 12px;
        font-size: clamp(29px, 9vw, 39px);
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .ak-intro p {
        margin: 0;
        font-size: 13px;
        line-height: 1.65;
    }

    /* Main booking cards */

    .ak-booking-card {
        margin-top: 14px;
        padding: 20px 14px;
        border-radius: 18px;
    }

    .ak-step-head {
        margin-bottom: 18px;
    }

    .ak-step-head h2 {
        margin-top: 4px;
        font-size: 23px;
        line-height: 1.2;
    }

    .ak-step-head.small h2 {
        font-size: 22px;
    }

    /* Step progress */

    .ak-step-progress {
        width: 100%;
        margin-bottom: 26px;
        gap: 4px;
    }

    .ak-progress-item {
        flex: 0 0 auto;
        min-width: 38px;
    }

    .ak-progress-item .circle {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }

    .ak-progress-item > span {
        display: none;
    }

    .progress-line {
        min-width: 12px;
        height: 2px;
        margin-inline: 2px;
    }

    /* Date selection */

    .ak-date-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ak-date-row .ak-field {
        width: 100%;
    }

    .ak-field input,
    .ak-field select,
    .ak-field textarea {
        width: 100%;
        min-width: 0;
        min-height: 50px;

        /*
         * 16px prevents iOS Safari from zooming when focusing.
         */
        font-size: 16px;
    }

    .ak-field textarea {
        min-height: 115px;
    }

    #passDate {
        display: block;
        width: 100%;
        min-height: 54px;
    }

    .ak-check-btn {
        width: 100%;
        min-height: 52px;
    }

    .ak-message {
        padding: 13px 14px;
        font-size: 12px;
        line-height: 1.5;
    }

    /* Passes */

    .ak-pass-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .ak-pass-card {
        width: 100%;
        min-height: 0;
        padding: 18px;
        border-radius: 16px;
    }

    .ak-pass-card h3 {
        padding-right: 50px;
        font-size: 20px;
    }

    .ak-pass-card ul {
        margin: 13px 0;
    }

    .ak-pass-card li {
        font-size: 12px;
    }

    .ak-badge {
        top: 12px;
        right: 12px;
        font-size: 9px;
    }

    /* Guest counters */

    .ak-booking-options {
        display: grid;
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .ak-counter {
        width: 100%;
        min-height: 72px;
        padding: 12px 14px;
    }

    .ak-counter-controls {
        flex-shrink: 0;
    }

    .ak-counter-controls button {
        width: 40px;
        height: 40px;
        touch-action: manipulation;
    }

    .ak-counter-controls input {
        width: 38px;
        font-size: 15px;
    }

    /* Selection bottom bar */

    .ak-bottom-bar {
        position: sticky;
        z-index: 20;
        bottom: max(8px, env(safe-area-inset-bottom));
        display: grid;
        grid-template-columns: 1fr;
        gap: 13px;
        margin: 22px -4px 0;
        padding: 14px;
        background: rgba(255, 255, 255, 0.97);
        border: 1px solid #e6ded2;
        border-radius: 17px;
        box-shadow: 0 12px 34px rgba(0, 0, 0, 0.13);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .ak-price-summary {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 14px;
        min-width: 0;
    }

    .ak-price-summary > div:first-child {
        min-width: 0;
    }

    #summaryTitle,
    #summaryDetails {
        display: block;
        max-width: 185px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    #summaryDetails {
        font-size: 10px;
    }

    .ak-total {
        flex: 0 0 auto;
        text-align: right;
    }

    #summaryTotal {
        white-space: nowrap;
        font-size: 18px;
    }

    .ak-continue {
        width: 100%;
        min-height: 52px;
    }

    /* Personal information */

    .ak-step-layout {
        display: flex;
        flex-direction: column;
    }

    .ak-form-card {
        width: 100%;
        padding: 18px 14px;
        border-radius: 17px;
    }

    .ak-form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ak-form-grid .ak-field,
    .ak-form-grid .ak-field.full {
        grid-column: auto;
    }

    .phone-field {
        display: grid;
        grid-template-columns: minmax(98px, 0.38fr) minmax(0, 1fr);
        width: 100%;
    }

    .phone-field select,
    .phone-field input {
        min-width: 0;
    }

    .ak-summary {
        width: 100%;
        padding: 17px 15px;
        border-radius: 17px;
    }

    .product-description {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .step-buttons {
        display: flex;
        flex-direction: column-reverse;
        gap: 10px;
        margin-top: 20px;
    }

    .step-buttons button {
        width: 100%;
        min-height: 52px;
    }

    /* Payzone payment */

    #step4 {
        padding-inline: 8px;
    }

    .payment-top {
        display: block;
        padding-inline: 8px;
    }

    .payment-top h2 {
        font-size: 23px;
    }

    .iframe-card {
        width: 100%;
        min-width: 0;
        margin-top: 16px;
        padding: 0;
        border-radius: 16px;
        overflow: hidden;
    }

    .paywall-frame {
        display: block;
        width: 100%;
        min-width: 0;
        height: 690px;
        border: 0;
    }

    .paywall-loader {
        min-height: 420px;
        padding: 24px 15px;
    }

    /* Footer */

    .ak-footer {
        margin-top: 34px;
        border-radius: 18px 18px 0 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px 20px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        padding: 16px 20px;
        text-align: center;
        font-size: 10px;
    }

    .ak-footer-payments {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
    }

    .ak-footer-payments img {
        max-width: 82px;
        height: 30px;
        object-fit: contain;
    }
}

/*
 * Very small phones.
 */
@media (max-width: 380px) {
    .ak-logo img {
        max-width: 78px;
    }

    .ak-header-select {
        min-width: 70px;
        width: 49px;
        padding-left: 5px;
    }

    .ak-call {
        flex-basis: 35px;
        width: 35px;
        height: 35px;
    }

    .ak-booking-card {
        padding-inline: 11px;
    }

    .phone-field {
        grid-template-columns: 120px minmax(0, 1fr);
    }
}


@media (max-width: 600px) {
    .ak-photo-grid {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-template-rows: 220px 135px;
        gap: 6px;
        width: 100%;
        overflow: hidden;
        border-radius: 12px;
    }

    /*
     * First row: two images.
     */
    .ak-photo-grid > :nth-child(1) {
        grid-column: 1 / 4;
        grid-row: 1;
    }

    .ak-photo-grid > :nth-child(2) {
        grid-column: 4 / 7;
        grid-row: 1;
    }

    /*
     * Second row: three images.
     */
    .ak-photo-grid > :nth-child(3) {
        grid-column: 1 / 3;
        grid-row: 2;
    }

    .ak-photo-grid > :nth-child(4) {
        grid-column: 3 / 5;
        grid-row: 2;
    }

    .ak-photo-grid > :nth-child(5) {
        grid-column: 5 / 7;
        grid-row: 2;
    }

    .ak-photo-grid > button {
        display: block;
        width: 100%;
        height: 100%;
        min-width: 0;
        margin: 0;
        padding: 0;
        overflow: hidden;
        border: 0;
    }

    .ak-photo-grid > button img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /*
     * Override the desktop positioning of the main/last images.
     */
    .ak-photo-grid .ak-photo-main,
    .ak-photo-grid .ak-photo-last {
        grid-column: auto;
        grid-row: auto;
    }

    /*
     * Reapply the required positions with greater specificity.
     */
    .ak-photo-grid > .ak-photo-main:nth-child(1) {
        grid-column: 1 / 4;
        grid-row: 1;
    }

    .ak-photo-grid > .ak-photo-last:nth-child(5) {
        grid-column: 5 / 7;
        grid-row: 2;
    }
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-legal a {
    color: inherit;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.footer-legal a:hover {
    color: #c7a45a;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}