@charset "UTF-8";
@import url("https://use.typekit.net/zus7rde.css");
#alert-container {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: 90%;
  max-width: 400px;
}

/* Slide-in Animation */
@keyframes slide-up {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.alert-message {
  position: relative;
  padding: 15px;
  margin: 5px 0;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  animation: slide-up 0.5s ease forwards;
}

#alert-container .close-alert {
  color: #ffffff !important;
}

.success {
  background-color: #28a745;
}

.error {
  background-color: #dc3545;
}

.info {
  background-color: #383835;
}

.close-alert {
  margin-left: 10px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
}

html, body {
  font-family: "InterFaceTypo", sans-serif;
  color: #1d1d1b;
  margin: 0;
  padding-bottom: 20px;
}

.divider {
  width: 50%;
  margin: 100px auto;
}

input[type=text], input[type=password], input[type=email] {
  box-sizing: border-box;
  width: 100%;
  height: 45px;
  line-height: 1.5em;
  font-size: 15px;
  padding: 0 10px;
  border-radius: 0;
  border: solid grey 1px;
  color: #63625f;
}

.button, input[type=submit] {
  width: 100%;
  padding: 12px 16px;
  background: linear-gradient(180deg, #2b2b29 0%, #1d1d1b 100%);
  color: #ffffff;
  line-height: 1.2;
  font-size: 15px;
  letter-spacing: 1.2px;
  border-radius: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #1d1d1b;
  cursor: pointer;
  box-shadow: none;
  transition: background 0.2s ease;
}

.button:hover, input[type=submit]:hover {
  background: linear-gradient(180deg, #31312f 0%, #21211f 100%);
}

.button:active, input[type=submit]:active {
  box-shadow: none;
  transform: none;
}

.button:disabled, input[type=submit]:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.login-form {
  width: 50%;
  display: block;
  margin: 5% auto 0 !important;
}

h1, h2, h3 {
  color: #383835;
  font-family: "gotham", serif;
  font-weight: 300;
}

p {
  margin-top: 8px !important;
  color: #63625f !important;
}

span {
  color: #63625f !important;
}

a {
  text-decoration: none;
  color: #1d1d1b;
}

.salutation {
  margin-top: 2%;
  text-align: center;
}

.notifications {
  display: block;
  margin: auto;
  text-align: center;
  width: 70%;
  max-width: 1200px;
}

.hidden {
  display: none;
}

/* components/carousel.scss
   Generic carousel & card styles for Glider.js
*/
/* Section wrapper (optional, for headings like "News") */
.carousel-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.carousel-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 40px;
  text-transform: uppercase;
}

/* Glider container */
.glider-contain {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Ensure flex + spacing between slides */
.glider {
  display: flex;
}

.glider-track {
  display: flex;
}

.glider-slide {
  margin-right: 30px; /* space to the right of each card */
}

.glider-slide:last-child {
  margin-right: 0; /* no extra space after last card */
}

/* Dots */
.glider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.glider-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ccc;
}

.glider-dots .glider-dot.active {
  background: #1c1c1c;
}

/* Card */
.carousel-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 500px;
  margin: 25px;
  /* Key fixes */
  width: 100%; /* take full width Glider gives */
  max-width: none; /* don’t artificially shrink to 300px */
  display: flex;
  flex-direction: column;
}

.carousel-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  display: block;
}

.carousel-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
  text-align: center;
}

.carousel-card-title {
  font-size: 20px;
  font-weight: bold;
  color: #111;
  margin-bottom: 10px;
}

.carousel-card-blurb {
  font-size: 15px;
  color: #444;
  line-height: 1.4;
  flex-grow: 1;
  margin-bottom: 16px;
}

.carousel-card-date {
  font-size: 14px;
  color: #888;
  margin-top: 5px;
  margin-bottom: 15px;
}

/* Mobile tweaks */
@media (max-width: 800px) {
  .glider-prev,
  .glider-next {
    /* display: none; */
  }
  .carousel-card {
    min-width: 100%;
    height: auto;
  }
  .carousel-card-image {
    height: 200px;
  }
}
.concierge-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.concierge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 80%;
  gap: 40px;
  justify-content: center;
}

.concierge-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  text-align: center;
  height: 450px;
}

.concierge-card:hover {
  transform: scale(1.05);
}

.concierge-card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  height: 100%;
  width: 100%;
}

.concierge-card-image {
  width: 100%;
  height: 400px; /* Adjust image height */
  object-fit: cover;
}

.concierge-card-title {
  padding: 10px;
  margin-top: 5px;
  font-size: 18px;
  font-weight: bold;
}

@media (max-width: 900px) {
  .concierge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .concierge-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.concierge-modal-container {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.concierge-modal-container.active {
  display: flex;
}

.concierge-modal {
  background: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.concierge-close-button {
  float: right;
  font-size: 24px;
  cursor: pointer;
}

.concierge-modal-content {
  text-align: center;
  overflow-y: auto;
  max-height: 80vh;
  display: block;
  margin: auto;
}

.modal-image-container img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.modal-cta {
  margin-top: 20px;
}

.modal-cta .cta {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.modal-cta .cta:hover {
  background-color: #0056b3;
}

.floorplan-container {
  flex: 2;
  min-width: 0;
}

.cart-content {
  flex: 1;
  padding: 20px;
  border-left: 2px solid #000;
  max-width: 400px;
  width: 60%;
  position: absolute;
  right: 0;
  top: 255px;
}

.cart-content h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000;
}

.checkout-button {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #000;
  color: #fff;
  border: none;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  text-align: center;
}

.checkout-button:hover {
  background-color: #333;
}

/* Card/grid styles for works area */
.eight-works-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(400px, 1fr));
  gap: 20px;
  justify-content: center;
  margin: 50px auto;
  width: 300px;
  max-width: 1300px;
}

@media (min-width: 1200px) {
  .eight-works-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 50px 100px;
  }
}
@media (max-width: 899px) {
  .eight-works-grid {
    grid-template-columns: 1fr;
  }
}
.eight-works-card {
  width: 300px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  align-items: center;
  border: 2px solid #ccc;
  border-radius: 15px;
  text-align: center;
}

.eight-works-card-image {
  width: 200px;
}

.eight-works-card-title {
  position: absolute;
  margin-top: 10px;
  text-align: center;
  bottom: 10px;
  text-transform: uppercase;
}

.guest-pass-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin: 16px 0 24px;
  padding: 12px 16px;
  background: #f4f6f8;
  border-radius: 10px;
}

.guest-pass-cta .button {
  display: inline-block;
  width: auto;
}

.guest-pass-cta-text {
  text-transform: uppercase;
  margin: 0;
}

.guest-pass-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 360px;
  margin: 12px auto 0;
}

.eight-works-floorplan {
  display: block;
  margin: 15px auto;
  text-align: center;
}

.eight-works-floorplan svg {
  max-height: 850px;
}

.works-modal {
  background-color: #fefefe;
  padding: 30px 25px 15px 25px;
  border: 1px solid #888;
  max-width: 500px;
  width: 65%;
  text-align: center;
  position: relative;
  display: block;
  margin: auto;
  top: 10%;
}

.eight-works-modal-background {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.eight-works-search {
  display: block;
  margin: 50px auto;
  text-align: center;
}

.eight-works-booking-history {
  display: table;
  margin: 50px auto;
  width: 70%;
  border-collapse: collapse;
  text-align: center;
}

.eight-works-booking-history td, .eight-works-booking-history th {
  border: 1px solid black;
  padding: 10px;
}

.eight-works-booking-history-title {
  text-align: center;
  margin: 2% auto;
}

.eight-works-search select {
  height: 50px;
  font-size: 1em;
  margin: -3px;
  border-radius: 0;
  padding: 10px;
}

/* SVG clickable area styles */
*[id^=zoompod] path,
*[id^=zoompod] text,
*[id^=room] path,
*[id^=room] text,
*[id^=meetingpod] path,
*[id^=meetingpod] text,
*[id^=d] path,
*[id^=d] text,
*[id^=c] path,
*[id^=c] text {
  transition: fill 0.2s;
  cursor: pointer;
}

.available path {
  fill: #a1de96;
  stroke: #7a7a7a;
}

.selected path {
  fill: #ffd4b9 !important;
}

.unavailable path {
  fill: #ff7b87;
  stroke: #7a7a7a;
  cursor: default !important;
}

@media (max-width: 1499px) {
  .floorplan-container svg {
    width: 95%;
    height: 100%;
  }
  .cart-content {
    position: relative;
    display: block;
    margin: auto;
    top: 15px;
    padding: 20px;
    border: 2px solid #000;
    background-color: #f9f9f9;
    max-width: 800px;
  }
  .cart-content h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
  }
  .cart-items {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 20px;
  }
  .cart-summary {
    margin-top: 20px;
    border-top: 1px solid #000;
    padding-top: 10px;
  }
  .cart-subtotal, .cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
  }
  .checkout-button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #000;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    text-align: center;
  }
  .checkout-button:hover {
    background-color: #333;
  }
}
.unavailable path {
  fill: #ff7b87;
  stroke: #7a7a7a;
  cursor: default !important;
}

*[id^=zoompod] path,
*[id^=zoompod] text,
*[id^=room] path,
*[id^=room] text,
*[id^=meetingpod] path,
*[id^=meetingpod] text,
*[id^=d] path,
*[id^=d] text,
*[id^=c] path,
*[id^=c] text {
  transition: fill 0.2s;
  cursor: pointer;
}

.available path {
  fill: #a1de96;
  stroke: #7a7a7a;
}

.selected path {
  fill: #ffd4b9 !important;
}

.cart-items {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 20px;
}

.cart-summary {
  margin-top: 20px;
  border-top: 1px solid #000;
  padding-top: 10px;
}

.cart-subtotal, .cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
}

.cart-page {
  max-width: 760px;
  margin: 20px auto 60px auto;
  padding: 0 20px;
}

.cart-page h1 {
  margin-bottom: 16px;
}

.cart-page-actions-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cart-page-link,
.cart-page-link-button {
  font-size: 14px;
  color: #1d1d1b;
  background: transparent;
  border: none;
  padding: 0;
  text-decoration: underline;
  cursor: pointer;
}

.cart-page-message {
  margin-bottom: 12px;
  color: #1d1d1b !important;
}

.cart-page-message.error {
  color: #b42318 !important;
}

.cart-page-guest-details {
  margin-bottom: 12px;
}

.cart-page-guest-details h3 {
  margin-bottom: 8px;
}

.cart-page-lines {
  border-top: 1px solid #ddd;
}

.cart-page-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.cart-page-line-name {
  font-weight: 600;
  color: #1d1d1b;
}

.cart-page-line-meta {
  font-size: 13px;
  color: #63625f;
}

.cart-page-line-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-page-qty-controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
}

.cart-page-qty-btn {
  border: none;
  background: #fff;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 18px;
}

.cart-page-qty-value {
  min-width: 30px;
  text-align: center;
  font-size: 14px;
}

.cart-page-remove {
  border: 1px solid #ddd;
  background: #fff;
  color: #1d1d1b;
  padding: 6px 10px;
  cursor: pointer;
}

.cart-page-totals {
  margin-top: 16px;
  border-top: 1px solid #ddd;
  padding-top: 16px;
}

.cart-page-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cart-page-credit-row {
  margin-bottom: 12px;
}

.cart-page-credit-row label {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
}

.cart-page-checkout {
  max-width: 260px;
}

.cart-page-addons {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed #d5d5d5;
}

.cart-page-addon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f1f1f1;
}

.cart-page-addon-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-page-add-addon {
  border: 1px solid #ddd;
  background: #fff;
  color: #1d1d1b;
  padding: 6px 10px;
  cursor: pointer;
}

.credit-home-panel {
  width: 50%;
  max-width: 800px;
  margin: 14px auto 0;
  box-sizing: border-box;
  border: 1px solid #dfdfdf;
  border-radius: 16px;
  background: linear-gradient(180deg, #fcfcfc 0%, #f4f4f3 100%);
  padding: 16px 18px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.credit-home-balance-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.credit-home-balance-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.credit-home-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #696965;
}

.credit-home-caption {
  margin: 0 !important;
  font-size: 13px;
  line-height: 1.4;
  color: #5c5b58 !important;
  max-width: 420px;
}

.credit-home-amount {
  font-size: 32px;
  line-height: 1;
  color: #171715;
  letter-spacing: -0.5px;
}

.credit-home-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid #d9d9d8;
  padding-top: 12px;
}

.credit-home-history-link {
  font-size: 13px;
  text-decoration: none;
  color: #1d1d1b;
  border-bottom: 1px solid #1d1d1b;
  padding-bottom: 2px;
}

.credit-home-history-link:hover {
  opacity: 0.75;
}

.credit-home-status {
  margin-top: 10px;
  min-height: 18px;
  font-size: 13px;
  color: #0e6e3d;
}

.credit-home-status.is-error {
  color: #b42318;
}

.credit-history-page {
  width: 50%;
  max-width: 800px;
  margin: 24px auto 50px;
  box-sizing: border-box;
}

.credit-history-header {
  margin-bottom: 14px;
}

.credit-history-back-link {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 13px;
  color: #1d1d1b;
  border-bottom: 1px solid #1d1d1b;
  padding-bottom: 2px;
}

.credit-history-back-link:hover {
  opacity: 0.75;
}

.credit-history-title {
  margin: 0 0 8px;
}

.credit-history-subtitle {
  margin: 0 !important;
  font-size: 14px;
  color: #5c5b58 !important;
  line-height: 1.45;
}

.credit-history-balance {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin: 8px auto 18px;
  padding: 16px 18px;
  border: 1px solid #dfdfdf;
  border-radius: 16px;
  background: linear-gradient(180deg, #fcfcfc 0%, #f4f4f3 100%);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.credit-history-balance strong {
  font-size: 32px;
  line-height: 1;
  color: #171715;
  letter-spacing: -0.5px;
}

.credit-history-table-wrap {
  border: 1px solid #dededd;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.credit-history-table {
  width: 100%;
  margin-top: 0;
  border-collapse: collapse;
}

.credit-history-table th {
  text-align: left;
  font-weight: 600;
  background: #f4f4f3;
  color: #484844;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  border-bottom: 1px solid #dcdcd9;
  padding: 12px 14px;
}

.credit-history-table td {
  vertical-align: middle;
  padding: 13px 14px;
  border-bottom: 1px solid #efefee;
  font-size: 14px;
  color: #1d1d1b;
}

.credit-history-table tbody tr:last-child td {
  border-bottom: none;
}

.credit-history-date {
  color: #575754;
}

.credit-history-amount-header,
.credit-history-amount-cell {
  text-align: right;
}

.credit-history-empty {
  text-align: center;
  color: #63625f;
  padding: 22px 14px !important;
}

.credit-amount-positive {
  color: #0c7a43;
  font-weight: 600;
}

.credit-amount-negative {
  color: #b42318;
  font-weight: 600;
}

.cart-feedback-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: min(360px, 100vw - 40px);
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
  padding: 14px;
  z-index: 1300;
}

.cart-feedback-title {
  font-weight: 600;
  color: #1d1d1b;
  margin-bottom: 4px;
}

.cart-feedback-copy {
  color: #63625f;
  font-size: 14px;
  margin-bottom: 12px;
}

.cart-feedback-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.cart-feedback-btn {
  border: 1px solid #d3d3d3;
  background: #fff;
  color: #1d1d1b;
  font-size: 13px;
  padding: 7px 10px;
  cursor: pointer;
  text-decoration: none;
}

.cart-feedback-btn-primary {
  background: #1d1d1b;
  color: #fff;
  border-color: #1d1d1b;
}

.credit-topup-home-btn {
  width: auto;
  min-width: 190px;
  max-width: none;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
}

@media (max-width: 600px) {
  .credit-history-page {
    width: calc(100% - 24px);
  }
  .credit-history-balance {
    padding: 14px;
  }
  .credit-history-balance strong {
    font-size: 28px;
  }
  .credit-history-table-wrap {
    border-radius: 12px;
    overflow-x: auto;
  }
  .credit-history-table th,
  .credit-history-table td {
    white-space: nowrap;
    font-size: 13px;
  }
  .credit-home-panel {
    width: calc(100% - 24px);
    padding: 14px;
  }
  .credit-home-balance-row {
    align-items: flex-start;
  }
  .credit-home-amount {
    font-size: 28px;
  }
  .credit-home-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .credit-home-history-link {
    width: fit-content;
  }
  .credit-topup-home-btn {
    width: 100%;
    min-width: 0;
  }
}
.credit-topup-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1400;
  padding: 20px;
}

.credit-topup-modal.hidden {
  display: none;
}

.credit-topup-modal-card {
  width: min(520px, 100%);
  background: #fff;
  border: 1px solid #dadada;
  border-radius: 16px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2);
  padding: 22px 20px 18px;
  position: relative;
}

.credit-topup-close {
  position: absolute;
  right: 12px;
  top: 8px;
  border: none;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.credit-topup-modal-card h3 {
  margin: 0 0 8px;
}

.credit-topup-modal-card p {
  margin: 0 0 14px !important;
  font-size: 14px;
}

.credit-topup-presets {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.credit-topup-preset {
  border: 1px solid #d0d0cf;
  border-radius: 10px;
  padding: 9px 10px;
  background: #f6f6f5;
  color: #1d1d1b;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.credit-topup-preset:hover {
  background: #efefed;
  border-color: #b8b8b6;
  transform: translateY(-1px);
}

.credit-topup-options {
  margin-top: 10px;
}

.credit-topup-custom {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.credit-topup-custom label {
  font-size: 14px;
  color: #2a2a28;
  font-weight: 600;
}

.credit-topup-custom input {
  width: calc(100% - 2px);
  max-width: none;
  height: 48px;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #ccccca;
  padding: 0 12px;
  font-size: 16px;
}

.credit-topup-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.credit-topup-name {
  font-weight: 600;
}

.credit-topup-price {
  color: #63625f;
  font-size: 14px;
}

.credit-topup-add {
  width: 100%;
}

.credit-topup-message {
  min-height: 18px;
  font-size: 13px;
  color: #4f4f4c;
}

.credit-topup-message.is-error {
  color: #b42318;
}

@media (max-width: 620px) {
  .credit-topup-presets {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.cart-items {
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 20px;
}

.cart-summary {
  margin-top: 20px;
  border-top: 1px solid #000;
  padding-top: 10px;
}

.cart-subtotal, .cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
}

.event-toggle-button {
  width: 30%;
  min-width: 250px;
  display: block;
  margin: auto;
}

@media (max-width: 650px) {
  .event-toggle-button {
    width: calc(100% - 32px);
    min-width: 0;
    max-width: 320px;
    margin: 0 auto;
  }
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 20px;
  max-width: 1140px;
  margin: 0 auto;
}

@media (max-width: 1000px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 650px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
}
.events-grid .event-card {
  cursor: pointer;
  background: white;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.event-content {
  padding: 15px;
  position: relative;
}

.no-events {
  grid-column: 1/-1;
  text-align: center;
  padding: 40px;
  font-size: 1.2em;
  font-family: "Helvetica Neue", Arial, sans-serif;
  border-radius: 8px;
  color: #888;
  background: #f5f5f5;
}

@media (max-width: 650px) {
  .events-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 15px;
  }
}
.event-image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.event-title {
  margin: 0 0 8px 0;
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.3;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1c1c1c;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event-date {
  font-size: 0.9em;
  color: #666;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.current-month {
  font-size: 1.5em;
  font-weight: 500;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1c1c1c;
}

.month-controls {
  display: flex;
  gap: 10px;
}

.current-month {
  font-size: 1.2em;
}

.month-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 0 20px;
}

.month-nav-btn {
  background: #1c1c1c;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.month-nav-btn:hover {
  background: #333;
}

.month-navigation {
  padding: 0 15px;
  margin-bottom: 20px;
}

.event-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 24px 48px;
}

.event-page-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 12px auto 28px;
}

.event-page-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4d4d47;
}

.event-page-hero {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
  gap: 0;
  background: #f7f7f5;
  border: 1px solid #e6e6e1;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(48, 38, 19, 0.12);
}

.event-page-media {
  min-height: 520px;
  background: #d9d9d4;
}

.event-page-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-page-panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.event-page-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 44px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 247, 245, 0.98) 100%);
}

.event-page-title {
  margin: 0 0 18px;
  color: #27241f;
  font-family: "gotham", serif;
  font-size: clamp(2.3rem, 4.4vw, 4.4rem);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.event-page-category {
  margin-bottom: 20px;
  color: #6e685c;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.event-page-datetime {
  color: #3a372f;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.event-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.event-page-footer-actions {
  margin: 0 44px 44px;
  padding-top: 24px;
  border-top: 1px solid #e6e6e1;
}

.event-page-actions .button,
.event-page-actions a.button {
  width: auto;
  min-width: 200px;
  text-align: center;
}

.event-page-primary-action {
  min-width: 280px !important;
}

.event-page-content {
  padding: 0 44px 44px;
}

.event-page-content h2,
.event-page-content h3,
.event-page-content h4 {
  margin-top: 0;
  color: #27241f;
}

.event-page-content p,
.event-page-content li {
  color: #444038 !important;
  font-size: 1rem;
  line-height: 1.8;
}

.event-page-content p:first-child {
  margin-top: 0 !important;
}

.event-page-content p:last-child {
  margin-bottom: 0 !important;
}

@media (max-width: 900px) {
  .event-page {
    padding: 20px 16px 36px;
  }
  .event-page-hero {
    grid-template-columns: 1fr;
  }
  .event-page-media {
    min-height: 340px;
  }
  .event-page-body {
    padding: 32px 24px;
  }
  .event-page-content {
    padding: 0 24px 28px;
  }
  .event-page-footer-actions {
    margin: 0 24px 24px;
    padding-top: 20px;
  }
  .event-page-actions .button,
  .event-page-actions a.button {
    width: 100%;
    min-width: 0;
  }
}
.header {
  padding-top: 25px;
}

.heading {
  display: block;
  margin: 2% auto;
  text-align: center;
}

.content {
  margin-top: 35px;
}

.logo {
  display: block;
  margin: auto;
}

.login {
  width: 50%;
  text-align: center;
}

.login * {
  margin: 10px auto;
}

.modal .works-modal .works-close-button {
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 30px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
}

.modal-background {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 9000;
}

.modal-content {
  position: relative;
}

/* Unified modal surface treatment */
.works-modal,
.event-modal,
.attendance-modal,
.concierge-modal,
.credit-topup-modal-card,
.modal-background .modal-content {
  border: 1px solid #e4e4e4;
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.event-modal {
  position: relative;
  width: min(1080px, 100vw - 48px);
  max-height: calc(100vh - 64px);
  overflow: hidden;
  border: 1px solid #e6e6e1;
  border-radius: 28px;
  background: #ffffff;
}

.events-close-button {
  position: absolute;
  right: 18px;
  top: 16px;
  font-size: 28px;
  line-height: 1;
  color: #5f5a4f;
  cursor: pointer;
  z-index: 3;
}

.modal-image-container {
  width: 100%;
  max-width: 250px;
  display: block;
  margin: auto;
  overflow: hidden;
  position: relative;
  aspect-ratio: auto;
}

.event-modal .modal-image-container {
  width: 100%;
  max-width: none;
  margin: 0;
  aspect-ratio: 1/1;
  height: auto;
  align-self: stretch;
}

.concierge-modal .modal-image-container {
  aspect-ratio: 1/1;
}

.modal-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.event-modal .modal-image-container img,
.event-modal .event-page-media img {
  width: 100%;
  height: 100%;
  max-height: none;
  border-radius: 0;
}

.modal-text-content {
  padding: 20px;
  max-width: 600px;
  display: block;
  margin: auto;
}

.event-modal-content {
  max-height: calc(100vh - 64px);
  overflow: auto;
  overflow-x: hidden;
  padding-bottom: 18px;
}

.event-modal .event-page-hero {
  grid-template-columns: minmax(280px, min(420px, 38vw)) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  max-height: calc(100vh - 64px);
  overflow: auto;
  overflow-x: hidden;
  background: #ffffff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.event-modal .event-page-media {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1/1;
  background: #f1f1ed;
}

.event-modal .event-page-panel {
  background: #ffffff;
  min-width: 0;
}

.event-modal .event-page-body {
  padding: 48px 44px 20px;
  background: #ffffff;
  min-width: 0;
}

.event-modal .event-page-content {
  max-height: none;
  padding: 0 44px 30px;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.modal-date {
  color: #666;
  font-size: 0.9em;
  margin-bottom: 20px;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.modal-description {
  color: #444;
  margin-bottom: 25px;
  line-height: 1.5;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1em;
}

.modal-description p {
  margin: 0 0 15px 0;
}

.modal-description p:last-child {
  margin-bottom: 0;
}

.modal-cta {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.event-modal .modal-cta {
  margin: 0 44px 30px;
  padding-top: 24px;
  border-top: 1px solid #e6e6e1;
}

.event-modal .modal-text-content {
  max-width: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}

/* Client attendance modal */
.attendance-modal-container {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1200;
}

@media (max-width: 900px) {
  .event-modal {
    width: min(100vw - 24px, 720px);
    max-height: calc(100vh - 32px);
    border-radius: 22px;
  }
  .event-modal .event-page-hero {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 32px);
  }
  .event-modal .event-page-media,
  .event-modal .modal-image-container {
    aspect-ratio: 1/1;
    width: 100%;
    max-width: none;
    min-height: 0;
  }
  .event-modal .event-page-body {
    padding: 32px 24px 18px;
  }
  .event-modal .event-page-content {
    padding: 0 24px 24px;
  }
  .event-modal .modal-cta {
    margin: 0 24px 24px;
    padding-top: 20px;
  }
  .event-modal .modal-cta a.cta {
    display: block;
    min-width: 0;
    width: 100%;
  }
}
.attendance-modal-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.attendance-modal-container.active {
  display: flex;
}

.attendance-modal {
  position: relative;
  z-index: 1;
  background: #fff;
  width: 90%;
  max-width: 520px;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.attendance-modal-content {
  padding: 24px 28px 20px 28px;
}

.attendance-close-button {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 22px;
  color: #666;
  cursor: pointer;
}

.attendance-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
  flex-wrap: nowrap;
}

.attendance-actions .button {
  width: auto;
  line-height: 1.2;
  padding: 10px 16px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

#attendanceSubmit,
#attendanceRemove {
  width: auto !important;
  min-height: 40px;
  line-height: 1.1 !important;
  padding: 9px 14px !important;
  letter-spacing: 0.5px !important;
  white-space: nowrap !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.attendance-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #222;
}

.attendance-select {
  width: 100%;
  max-width: none;
  padding: 8px 10px;
  border: 1px solid #767676;
  border-radius: 4px;
  background: #fff;
  font-size: 0.95rem;
}

.attendance-names {
  margin-top: 12px;
}

@media (max-width: 600px) {
  .attendance-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .attendance-actions .button,
  #attendanceSubmit,
  #attendanceRemove {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .modal {
    margin: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    display: flex;
    flex-direction: column;
  }
}
.modal-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.modal-text-content {
  padding: 20px;
  flex: 1;
  overflow-y: auto;
}

.modal-text-content h2 {
  font-size: 1.3em;
}

.modal-description {
  font-size: 0.95em;
}

.modal-cta {
  position: sticky;
  bottom: 0;
  background: white;
  padding: 15px 20px;
  margin: 0 -20px -20px -20px;
  border-top: 1px solid #eee;
}

.event-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Background overlay */
.event-modal-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Greyed-out background */
  backdrop-filter: blur(5px); /* Optional: blurred background */
  z-index: -1;
}

/* Show modal when active */
.event-modal-container.active {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 900px) {
  .event-modal-container {
    padding: 16px;
  }
}
.modal-background {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

/* Alpine.js transition classes for modal */
.modal-enter {
  transition: opacity 0.3s ease-out;
}

.modal-enter-start {
  opacity: 0;
}

.modal-enter-end {
  opacity: 1;
}

.modal-leave {
  transition: opacity 0.2s ease-in;
}

.modal-leave-start {
  opacity: 1;
}

.modal-leave-end {
  opacity: 0;
}

.modal-close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 18px;
  cursor: pointer;
}

.nav {
  width: 100%;
  display: flex;
  margin-top: 2%;
  justify-content: space-between;
  align-items: center;
}

.nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-around;
  width: 100%;
}

.nav ul li {
  display: inline-block;
}

.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger-menu span {
  width: 25px;
  height: 2px;
  background-color: #1d1d1b;
  margin: 4px 0;
}

.overlay {
  display: none;
}

.overlay ul {
  padding: 0 !important;
}

.nav-left, .nav-right {
  flex: 2;
  padding: 0 2%;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}

.nav-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 50px;
}

.nav-cart-link::after {
  content: "";
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  border-right: 1px solid #d8d8d8;
}

.nav-cart-link svg {
  width: 22px;
  height: 22px;
  color: #1d1d1b;
}

.nav-logout-link {
  display: inline-flex;
  align-items: center;
  margin-left: 0;
  font-size: 13px;
  letter-spacing: 0.9px;
}

.nav-cart-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #1d1d1b;
  color: #fff !important;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
}

#overlayCartCountBadge {
  color: #fff !important;
}

.nav-center {
  flex: 10;
  padding: 0 2%;
}

.nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}

.nav ul li {
  display: inline-block;
}

#add-to-home-install-button {
  background-color: #383835;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 10px 0;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

#add-to-home-close-button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}

#webcam, #canvas {
  display: block;
  margin: auto;
  transform: scaleX(-1);
}

.profile-picture-button {
  display: block;
  margin: 0 auto 15px;
  width: 50%;
  max-width: 640px;
}

.wallet-buttons {
  width: 50%;
  display: flex;
  margin: 20px auto;
}

.wallet-buttons .left, .wallet-buttons .right, .wallet-buttons .wallet-button {
  display: block;
  margin: auto;
  text-align: center;
}

.wallet-button {
  width: 200px !important;
}

.profile-picture {
  display: block;
  margin: auto;
  width: 200px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 100px;
}

#profilePicture {
  width: 200px;
  aspect-ratio: 1;
  display: block;
  margin: auto;
  object-fit: cover;
  border-radius: 100px;
}

.events-recommendations {
  display: block;
}

.events-recommendations h3 {
  text-align: center;
  margin: 2% auto;
}

.account-details-table {
  margin: 20px auto 50px auto;
  border-collapse: collapse;
  width: 50%;
  max-width: 800px;
}

.account-details-table td {
  border: 1px solid black;
  padding: 10px;
}

.account-details-table .label {
  width: 250px;
  font-weight: 800;
}

.add-to-homescreen-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #f9f9f9;
  border-top: 1px solid #ccc;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  text-align: center;
}

.add-to-homescreen-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  width: 90%;
  margin: 0 auto;
  padding: 10px 0;
  flex-direction: column;
}

.add-to-homescreen-text {
  flex-grow: 1;
  text-align: center;
  margin-bottom: 10px;
}

.add-to-homescreen-text h2 {
  margin: 0;
}

.add-to-homescreen-text p {
  margin: 5px 0 0;
  color: #555;
}

.membership {
  width: 66%;
  display: block;
  margin: auto;
  flex-direction: column;
  justify-content: flex-end;
}

.upcoming-events {
  margin-top: 30px;
}

.upcoming-events-heading {
  width: 50%;
  max-width: 800px;
  margin: 0 auto 12px auto;
  text-align: left;
}

.upcoming-events-empty {
  width: 50%;
  max-width: 800px;
  margin: 0 auto;
  padding: 16px 18px;
  border: 1px solid #d9d9d9;
  background: #f7f7f7;
  text-align: center;
  color: #5f5f5f;
  font-size: 0.95rem;
}

.quartier-image {
  display: block;
  margin: auto;
  width: 100%;
  max-width: 1000px;
}

.ot-dtp-picker {
  display: block;
  margin: 50px auto;
}

.ot-powered-by {
  display: none;
}

.ot-button {
  box-shadow: 0 0 0 0 transparent !important;
}

.ot-button#hover {
  background-color: #1d1d1b !important;
}

.tile {
  width: 200px;
  height: 200px;
}

.tile h3 {
  font-family: "gotham", serif;
  font-size: 24px;
  text-align: center;
  margin: 15px auto;
}

.tile p {
  text-align: center;
  margin: 80px auto 10px !important;
}

.tile img {
  width: 100%;
}

.art-card {
  width: 30%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.art-card:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.art-grid {
  display: flex;
  padding: 5% 0;
  justify-content: space-between;
  align-items: center;
  width: 75%;
  height: 70%;
}

.art-card-link {
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.art-card-image {
  width: 100%;
  height: 80%;
  object-fit: cover;
}

.art-card-title {
  font-size: 18px;
  text-align: center;
  padding: 10px 0;
  background-color: #f9f9f9;
  width: 100%;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.1);
}
