/* Events archive + card v2 */
.ggce-event-archive-wrap {
  background: var(--black);
  color: var(--ivory);
  padding-top: 100px;
}

body.ggce-events-has-bg .ggce-event-archive-wrap,
body.ggce-events-has-bg .ggce-event-single-v2,
body.ggce-events-has-bg .ggce-events-calendar-page .ggce-main,
body.ggce-events-has-bg .ggce-register-page:not(.ggce-exhibitor-register-page) {
  background: transparent;
}

.ggce-events-page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ggce-events-page-bg__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ggce-events-page-bg__overlay {
  position: absolute;
  inset: 0;
  background: #080807;
}

body.ggce-events-has-bg .ggce-event-archive-wrap,
body.ggce-events-has-bg .ggce-event-single-v2,
body.ggce-events-has-bg .ggce-events-calendar,
body.ggce-events-has-bg .ggce-register-page,
body.ggce-events-has-bg .ggce-booking-wizard {
  position: relative;
  z-index: 1;
}

.ggce-events-archive-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.ggce-events-archive-hero {
  margin-bottom: 36px;
}

.ggce-events-archive-hero__eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.ggce-events-archive-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 14px;
}

.ggce-events-archive-hero__title em {
  font-style: italic;
  color: var(--gold);
}

.ggce-events-archive-hero__desc {
  font-size: 13px;
  color: var(--stone);
  max-width: 520px;
  line-height: 1.7;
}

.ggce-events-archive-hero__link {
  margin-top: 16px;
}

.ggce-events-archive-hero__link a {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
}

.ggce-events-archive-hero__link a:hover {
  color: var(--gold-lt);
}

/* Filter bar */
.ggce-events-filter-bar {
  margin-bottom: 28px;
}

.ggce-events-filter-bar__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.ggce-events-filter-search {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 220px;
  min-width: 200px;
  background: var(--ink);
  border: 1px solid var(--line);
  padding: 10px 14px;
}

.ggce-events-filter-search__icon {
  width: 16px;
  height: 16px;
  fill: var(--stone);
  flex-shrink: 0;
}

.ggce-events-filter-search__input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--ivory);
  font-size: 13px;
  outline: none;
}

.ggce-events-filter-search__input::placeholder {
  color: var(--stone);
}

.ggce-events-filter-status {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  background: var(--ink);
  border: 1px solid var(--line);
  padding: 4px;
}

.ggce-events-filter-status__item {
  cursor: pointer;
}

.ggce-events-filter-status__item span {
  display: block;
  padding: 8px 12px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  transition: background 0.2s, color 0.2s;
}

.ggce-events-filter-status__item.is-active span,
.ggce-events-filter-status__item:has(input:checked) span {
  background: var(--gold);
  color: var(--black);
}

.ggce-events-filter-select__el {
  background: var(--ink);
  color: var(--ivory);
  border: 1px solid var(--line);
  padding: 10px 32px 10px 14px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  min-width: 140px;
}

.ggce-events-filter-reset {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  padding: 10px 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.ggce-events-filter-reset:hover {
  color: var(--gold);
}

.ggce-events-count {
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  text-align: right;
}

/* Grid */
.ggce-events-grid {
  display: grid;
  gap: 20px;
}

.ggce-events-grid--cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.ggce-events-grid--cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.ggce-events-grid--cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.ggce-events-grid--cols-1 {
  grid-template-columns: 1fr;
}

@media (max-width: 1100px) {
  .ggce-events-grid--cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ggce-events-grid--cols-4,
  .ggce-events-grid--cols-3,
  .ggce-events-grid--cols-2 {
    grid-template-columns: 1fr;
  }

  .ggce-events-archive-inner {
    padding: 0 20px 60px;
  }
}

.ggce-no-events {
  grid-column: 1 / -1;
  color: var(--stone);
  font-size: 14px;
  padding: 40px 0;
}

/* Card v2 */
.ggce-event-card-v2 {
  margin: 0;
  background: #0f0e0c;
  border: 1px solid rgba(198, 168, 90, 0.12);
  transition: border-color 0.25s, transform 0.25s;
}

.ggce-event-card-v2:hover {
  border-color: rgba(198, 168, 90, 0.35);
  transform: translateY(-3px);
}

.ggce-event-card-v2__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.ggce-event-card-v2__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--ink) center / cover no-repeat;
  overflow: hidden;
}

.ggce-event-card-v2__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(8, 8, 7, 0.85) 100%);
}

.ggce-event-card-v2__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 5px 10px;
  font-weight: 600;
}

.ggce-event-card-v2__pin {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e8c547;
  box-shadow: 0 0 0 3px rgba(232, 197, 71, 0.25);
}

.ggce-event-card-v2__body {
  padding: 18px 18px 16px;
}

.ggce-event-card-v2__meta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 12px;
  margin-bottom: 12px;
}

.ggce-event-card-v2__meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--stone);
  text-transform: uppercase;
}

.ggce-event-card-v2__icon {
  width: 13px;
  height: 13px;
  fill: currentColor;
  flex-shrink: 0;
  opacity: 0.85;
}

.ggce-event-card-v2__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--ivory);
  margin: 0 0 12px;
}

.ggce-event-card-v2__seats {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e8c547;
  margin: 0 0 10px;
}

.ggce-event-card-v2__seats-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e8c547;
  flex-shrink: 0;
}

.ggce-event-card-v2__location {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 11px;
  color: var(--stone);
  line-height: 1.5;
  margin: 0 0 16px;
}

.ggce-event-card-v2__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.ggce-event-card-v2__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--ivory);
}

.ggce-event-card-v2__cta {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ivory);
  border: 1px solid rgba(247, 244, 238, 0.35);
  padding: 8px 14px;
  transition: border-color 0.2s, color 0.2s;
}

.ggce-event-card-v2:hover .ggce-event-card-v2__cta {
  border-color: var(--gold);
  color: var(--gold);
}

.ggce-event-card-v2.is-sold-out {
  opacity: 0.65;
}

.ggce-event-archive-wrap .nav-links {
  margin-top: 40px;
  text-align: center;
}

.ggce-event-archive-wrap .nav-links a,
.ggce-event-archive-wrap .nav-links span {
  color: var(--stone);
  margin: 0 6px;
}

/* ── Single event v2 ── */
.ggce-event-single-v2 {
  background: var(--black);
  color: var(--ivory);
  padding-top: 88px;
}

.ggce-event-hero-v2 {
  position: relative;
  min-height: clamp(320px, 52vh, 520px);
  background: var(--ink) center / cover no-repeat;
  background-image: var(--hero-image, none);
  display: flex;
  align-items: flex-end;
}

.ggce-event-hero-v2__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 7, 0.35) 0%,
    rgba(8, 8, 7, 0.75) 55%,
    rgba(8, 8, 7, 0.95) 100%
  );
}

.ggce-event-hero-v2__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 40px 44px;
}

.ggce-event-hero-v2__crumbs {
  position: static;
  inset: auto;
  z-index: auto;
  display: block;
  padding: 0;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.ggce-event-hero-v2__crumbs a {
  color: var(--stone);
  text-decoration: none;
}

.ggce-event-hero-v2__crumbs a:hover {
  color: var(--gold);
}

.ggce-event-hero-v2__crumbs-sep {
  margin: 0 10px;
  color: var(--line);
}

.ggce-event-hero-v2__badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 6px 12px;
  font-weight: 600;
  margin-bottom: 18px;
}

.ggce-event-hero-v2__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.08;
  margin: 0 0 10px;
  max-width: 900px;
}

.ggce-event-hero-v2__title em {
  font-style: italic;
  color: var(--gold);
}

.ggce-event-hero-v2__emphasis {
  margin: 0 0 24px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 300;
  line-height: 1.2;
}

.ggce-event-hero-v2__quick {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
}

.ggce-event-hero-v2__quick li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--stone);
}

.ggce-event-hero-v2__quick svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  flex-shrink: 0;
}

.ggce-event-single-v2__body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 40px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 48px 40px;
  align-items: start;
}

.ggce-event-section-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}

.ggce-event-about {
  margin-bottom: 40px;
}

.ggce-event-about__subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400;
  color: var(--ivory);
  margin: 0 0 20px;
  line-height: 1.3;
}

.ggce-event-about__content.ggce-prose {
  font-size: 14px;
  line-height: 1.75;
  color: var(--stone);
}

.ggce-event-about__content.ggce-prose p {
  margin: 0 0 1em;
}

.ggce-event-about__content.ggce-prose a {
  color: var(--gold);
}

.ggce-event-theme-callout {
  margin-top: 40px;
  padding: 24px 24px 24px 20px;
  background: #111009;
  border-left: 4px solid var(--gold);
}

.ggce-event-theme-callout__quote {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-style: italic;
  line-height: 1.45;
  color: var(--gold);
}

/* Sidebar cards */
.ggce-event-booking-card,
.ggce-event-details-card {
  background: #0f0e0c;
  border: 1px solid rgba(198, 168, 90, 0.2);
  padding: 24px 22px;
}

.ggce-event-booking-card {
  border-top: 3px solid var(--gold);
  margin-bottom: 20px;
}

.ggce-event-booking-card__title,
.ggce-event-details-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 16px;
  color: var(--ivory);
}

.ggce-event-booking-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  margin: 0 0 8px;
  line-height: 1;
}

.ggce-event-booking-card__note {
  font-size: 11px;
  color: var(--stone);
  margin: 0 0 20px;
  line-height: 1.5;
}

.ggce-event-booking-card__seats-label {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--stone);
  margin: 0 0 8px;
}

.ggce-event-booking-card__bar {
  height: 4px;
  background: var(--ink);
  margin-bottom: 20px;
  overflow: hidden;
}

.ggce-event-booking-card__bar-fill {
  display: block;
  height: 100%;
  background: var(--gold);
  transition: width 0.3s;
}

.ggce-event-booking-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ggce-event-booking-card__actions .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.ggce-event-booking-card__actions .btn.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.ggce-event-booking-card .ggce-booking-form--sidebar {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.ggce-booking-form--sidebar {
  padding: 0;
  background: transparent;
  border: none;
}

.ggce-booking-form__intro,
.ggce-booking-form__payment-note {
  font-size: 12px;
  color: var(--stone);
  line-height: 1.55;
  margin: 0 0 14px;
}

.ggce-event-booking-card__status {
  font-size: 13px;
  color: var(--stone);
  margin: 16px 0 0;
}

.ggce-booking-form--sidebar .ggce-ticket-type {
  border: 1px solid var(--line);
  padding: 16px;
  margin-bottom: 12px;
}

.ggce-booking-form--sidebar .ggce-ticket-type__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.ggce-booking-form--sidebar .ggce-ticket-type__price {
  color: var(--gold);
  font-size: 13px;
}

.ggce-booking-form--sidebar .ggce-ticket-type__hint {
  font-size: 11px;
  color: var(--stone);
  margin: 0 0 12px;
}

.ggce-booking-form--sidebar .ggce-ticket-type__qty-label {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ggce-booking-form--sidebar .ggce-qty {
  width: 72px;
  background: var(--ink);
  border: 1px solid var(--line);
  color: var(--ivory);
  padding: 6px 8px;
}

.ggce-booking-form--sidebar .ggce-booking-form__select {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--line);
  color: var(--ivory);
  padding: 8px 10px;
  margin-top: 6px;
}

.ggce-booking-form--sidebar .ggce-booking-form__field {
  margin-bottom: 16px;
}

.ggce-booking-form--sidebar .ggce-booking-form__message {
  font-size: 12px;
  margin: 12px 0;
  color: var(--stone);
}

.ggce-booking-form--sidebar .ggce-booking-form__submit {
  width: 100%;
}

.ggce-booking-form--sidebar .ggce-attendee-row {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.ggce-booking-form--sidebar .ggce-attendee-row__label {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--stone);
}

.ggce-booking-form--sidebar .ggce-att-name,
.ggce-booking-form--sidebar .ggce-att-email {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--line);
  color: var(--ivory);
  padding: 8px 10px;
  font-size: 13px;
}

.ggce-event-details-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ggce-event-details-card__item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.ggce-event-details-card__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ggce-event-details-card__icon {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background: var(--gold);
  opacity: 0.85;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.ggce-event-details-card__icon--calendar {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-2V2h-2v2H9V2H7zm12 8H5v10h14V10z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-2V2h-2v2H9V2H7zm12 8H5v10h14V10z'/%3E%3C/svg%3E");
}

.ggce-event-details-card__icon--clock {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm1 11h4v-2h-3V7h-2v6z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm1 11h4v-2h-3V7h-2v6z'/%3E%3C/svg%3E");
}

.ggce-event-details-card__icon--location {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 14.5 9 2.5 2.5 0 0 1 12 11.5z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 14.5 9 2.5 2.5 0 0 1 12 11.5z'/%3E%3C/svg%3E");
}

.ggce-event-details-card__icon--ticket {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22 10V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v4a2 2 0 0 1 0 4v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 1 0-4zM11 15H9v-2h2v2zm0-4H9V9h2v2z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22 10V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v4a2 2 0 0 1 0 4v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 1 0-4zM11 15H9v-2h2v2zm0-4H9V9h2v2z'/%3E%3C/svg%3E");
}

.ggce-event-details-card__icon--dress {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3 5h5l-4 4 1 9-5-4-5 4 1-9-4-4h5z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3 5h5l-4 4 1 9-5-4-5 4 1-9-4-4h5z'/%3E%3C/svg%3E");
}

.ggce-event-details-card__label {
  display: block;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 4px;
}

.ggce-event-details-card__value {
  display: block;
  font-size: 13px;
  color: var(--ivory);
  line-height: 1.5;
}

/* Single event — programme (timeline + multi-day) */
.ggce-event-single-v2 .ggce-event-programme {
  margin: 0 0 40px;
}

.ggce-event-programme {
  margin: 40px 0 48px;
}

.ggce-event-programme__day {
  margin-bottom: 24px;
  padding: 22px 24px 10px;
  border: 1px solid rgba(198, 168, 90, 0.28);
  background: rgba(15, 14, 12, 0.55);
}

.ggce-event-programme__day:last-child {
  margin-bottom: 0;
}

.ggce-event-programme__day-head {
  font-family: 'DM Sans', sans-serif;
  margin: 0 0 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 10px;
  line-height: 1.3;
}

.ggce-event-programme__day-dot {
  color: var(--gold);
  font-size: 12px;
  line-height: 1;
  flex-shrink: 0;
}

.ggce-event-programme__day-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.ggce-event-programme__day-sep {
  color: rgba(198, 168, 90, 0.65);
  font-size: 11px;
  font-weight: 500;
}

.ggce-event-programme__day-date {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(198, 168, 90, 0.88);
}

.ggce-event-programme__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ggce-event-programme__day .ggce-event-programme__item {
  display: grid;
  grid-template-columns: 92px 20px minmax(0, 1fr);
  gap: 0 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(198, 168, 90, 0.12);
  align-items: start;
}

.ggce-event-programme__day .ggce-event-programme__item:last-child {
  border-bottom: none;
  padding-bottom: 8px;
}

.ggce-event-programme__time {
  grid-column: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.3px;
  line-height: 1.4;
  padding-top: 2px;
}

.ggce-event-programme__marker {
  grid-column: 2;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 5px;
  justify-self: center;
  box-shadow: 0 0 0 3px rgba(198, 168, 90, 0.15);
}

.ggce-event-programme__body {
  grid-column: 3;
  min-width: 0;
}

.ggce-event-programme__title {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ivory);
  margin: 0 0 8px;
  line-height: 1.35;
}

.ggce-event-programme__desc {
  margin: 0;
  font-size: 13px;
  color: var(--stone);
  line-height: 1.65;
}

@media (max-width: 960px) {
  .ggce-event-single-v2__body {
    grid-template-columns: 1fr;
    padding: 32px 20px 60px;
  }

  .ggce-event-hero-v2__inner {
    padding: 40px 20px 36px;
  }

}

@media (max-width: 640px) {
  .ggce-event-programme__item {
    grid-template-columns: 72px 16px minmax(0, 1fr);
    gap: 0 12px;
    padding: 16px 0;
  }

  .ggce-event-programme__time {
    font-size: 12px;
  }
}

/* Registration page */
.ggce-register-page {
  background: var(--black);
  color: var(--ivory);
  padding-top: 100px;
}

body.ggce-exhibitor-register-has-bg .ggce-exhibitor-register-page {
  background: transparent;
}

.ggce-exhibitor-page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ggce-exhibitor-page-bg__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ggce-exhibitor-page-bg__overlay {
  position: absolute;
  inset: 0;
  background: #080807;
}

body.ggce-exhibitor-register-has-bg .ggce-exhibitor-register-page,
body.ggce-exhibitor-register-has-bg .ggce-booking-wizard {
  position: relative;
  z-index: 1;
}

.ggce-register-hero {
  padding: 0 40px 24px;
  border-bottom: 1px solid var(--line);
}

.ggce-register-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.ggce-register-hero__eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}

.ggce-register-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  margin: 0 0 12px;
  line-height: 1.1;
}

.ggce-register-hero__desc {
  font-size: 14px;
  color: var(--stone);
  margin: 0 0 16px;
  max-width: 560px;
  line-height: 1.65;
}

.ggce-register-hero__event {
  font-size: 12px;
  color: var(--gold);
  margin: 0;
  letter-spacing: 0.02em;
}

.ggce-exhibitor-floor-plan {
  margin: 24px 0 0;
  max-width: 960px;
}

.ggce-exhibitor-floor-plan__img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.03);
}

.ggce-exhibitor-hero-intro {
  font-size: 14px;
  color: var(--stone);
  margin: 20px 0 0;
  max-width: 720px;
  line-height: 1.65;
}

.ggce-register-empty {
  padding: 60px 40px 100px;
}

.ggce-register-empty__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.ggce-register-empty h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0 0 12px;
}

.ggce-register-empty p {
  color: var(--stone);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 20px;
}

.ggce-booking-wizard__grid select,
.ggce-booking-wizard__grid textarea {
  background: var(--ink);
  border: 1px solid var(--line);
  color: var(--ivory);
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  text-transform: none;
  letter-spacing: normal;
  width: 100%;
}

.ggce-booking-wizard__grid select:focus,
.ggce-booking-wizard__grid textarea:focus {
  outline: none;
  border-color: rgba(198, 168, 90, 0.5);
}

@media (max-width: 960px) {
  .ggce-register-hero {
    padding: 0 20px 20px;
  }

  .ggce-register-empty {
    padding: 40px 20px 80px;
  }
}

/* Masterclasses on offer */
.ggce-event-masterclasses {
  margin-bottom: 48px;
}

.ggce-event-masterclasses__intro {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.65;
  margin: 0 0 28px;
  max-width: 640px;
}

.ggce-event-masterclasses__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.ggce-masterclass-card {
  background: #0f0e0c;
  border: 1px solid var(--line);
  padding: 24px 22px;
  transition: border-color 0.2s;
}

.ggce-masterclass-card:hover {
  border-color: rgba(198, 168, 90, 0.35);
}

.ggce-masterclass-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ivory);
  margin: 0 0 10px;
  line-height: 1.3;
}

.ggce-masterclass-card__schedule {
  font-size: 12px;
  color: var(--gold);
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}

.ggce-masterclass-card__desc {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.6;
  margin: 0 0 14px;
}

.ggce-masterclass-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--gold);
  margin: 0 0 16px;
}

.ggce-masterclass-card__syllabus {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.ggce-masterclass-card__syllabus summary {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  list-style: none;
}

.ggce-masterclass-card__syllabus summary::-webkit-details-marker {
  display: none;
}

.ggce-masterclass-card__syllabus-body {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.65;
  margin-top: 12px;
}

.ggce-event-masterclasses__cta {
  margin: 0;
}

/* Conference booking wizard */
.ggce-booking-wizard {
  background: var(--black);
  border-top: none;
  padding: 40px 40px 80px;
  scroll-margin-top: 100px;
}

.ggce-booking-wizard__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.ggce-booking-wizard__steps {
  position: static;
  inset: auto;
  z-index: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px 32px;
  margin-bottom: 40px;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--line);
}

.ggce-booking-wizard__step {
  background: none;
  border: none;
  padding: 0 0 8px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--stone);
  cursor: pointer;
  position: relative;
  font-family: inherit;
}

.ggce-booking-wizard__step.is-active {
  color: var(--gold);
}

.ggce-booking-wizard__step.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
}

.ggce-booking-wizard__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 40px;
  align-items: start;
}

.ggce-booking-wizard__layout--full {
  grid-template-columns: 1fr;
}

.ggce-booking-wizard__panel[hidden] {
  display: none !important;
}

.ggce-booking-wizard__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
  color: var(--ivory);
  margin: 0 0 10px;
}

.ggce-booking-wizard__heading--spaced {
  margin-top: 40px;
}

.ggce-booking-wizard__subheading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ivory);
  margin: 32px 0 8px;
}

.ggce-booking-wizard__sub {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 560px;
}

.ggce-booking-wizard__grid {
  display: grid;
  gap: 16px 20px;
  margin-bottom: 24px;
}

.ggce-booking-wizard__grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ggce-booking-wizard__grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--stone);
}

.ggce-booking-wizard__full {
  grid-column: 1 / -1;
}

.ggce-booking-wizard__grid input {
  background: var(--ink);
  border: 1px solid var(--line);
  color: var(--ivory);
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  text-transform: none;
  letter-spacing: normal;
}

.ggce-booking-wizard__grid input:focus {
  outline: none;
  border-color: rgba(198, 168, 90, 0.5);
}

.ggce-booking-wizard__hint {
  font-size: 11px;
  color: var(--stone);
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.45;
}

.ggce-booking-wizard__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}

.ggce-booking-option {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: #0a0908;
  cursor: pointer;
  transition: border-color 0.2s;
}

.ggce-booking-option:hover {
  border-color: rgba(198, 168, 90, 0.3);
}

.ggce-booking-option.is-selected {
  border-color: var(--gold);
}

.ggce-booking-option input {
  margin-top: 4px;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.ggce-booking-option__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ggce-booking-option__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.ggce-booking-option__head strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ivory);
}

.ggce-booking-option__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold);
  white-space: nowrap;
}

.ggce-booking-option__tagline {
  font-size: 12px;
  color: var(--stone);
}

.ggce-booking-option__benefits {
  font-size: 12px;
  color: var(--stone);
  line-height: 1.5;
}

.ggce-booking-option__description,
.ggce-ticket-type__description {
  font-size: 12px;
  color: var(--stone);
  line-height: 1.6;
  margin-top: 8px;
}

.ggce-booking-option__description p,
.ggce-ticket-type__description p {
  margin: 0 0 8px;
}

.ggce-booking-option__description ul,
.ggce-ticket-type__description ul {
  margin: 0;
  padding-left: 1.1em;
}

.ggce-booking-option__qty-wrap {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ggce-booking-option__qty-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

.ggce-booking-option__qty-wrap .ggce-pass-qty {
  width: 100%;
  max-width: 120px;
  padding: 10px 12px;
  background: var(--ink);
  border: 1px solid var(--line);
  color: var(--ivory);
  font-family: inherit;
}

.ggce-booking-option__qty-wrap .ggce-pass-qty:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.ggce-booking-wizard__group-hint {
  margin-top: 16px;
}

.ggce-booking-wizard__group {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.ggce-booking-wizard__qty {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 200px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--stone);
}

.ggce-booking-wizard__qty input {
  padding: 10px 12px;
  background: var(--ink);
  border: 1px solid var(--line);
  color: var(--ivory);
}

.ggce-booking-wizard__extra-attendees {
  margin-top: 16px;
}

.ggce-booking-wizard__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.ggce-booking-wizard__nav .btn {
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
}

.ggce-booking-wizard__nav .btn.btn-ghost {
  background: transparent !important;
  color: var(--ivory) !important;
  border: 1px solid rgba(198, 168, 90, 0.5) !important;
}

.ggce-booking-wizard__nav .btn.btn-ghost:hover,
.ggce-booking-wizard__nav .btn.btn-ghost:focus {
  background: rgba(198, 168, 90, 0.12) !important;
  border-color: var(--gold) !important;
  color: var(--gold-lt) !important;
}

.ggce-booking-wizard__nav .btn.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.ggce-booking-wizard__nav .btn.btn-gold:hover,
.ggce-booking-wizard__nav .btn.btn-gold:focus {
  background: var(--gold-lt);
  color: var(--black);
}

.ggce-booking-wizard__message {
  font-size: 13px;
  color: var(--stone);
  margin-top: 12px;
}

.ggce-booking-wizard__review-dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
  margin: 0 0 24px;
}

.ggce-booking-wizard__review-dl dt {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 4px;
}

.ggce-booking-wizard__review-dl dd {
  margin: 0;
  font-size: 14px;
  color: var(--ivory);
}

.ggce-booking-wizard__review-lines {
  list-style: none;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
}

.ggce-booking-wizard__review-lines li {
  font-size: 14px;
  color: var(--ivory);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.ggce-booking-wizard__summary {
  position: sticky;
  top: 100px;
  background: #0f0e0c;
  border: 1px solid rgba(198, 168, 90, 0.2);
  padding: 24px 22px;
}

.ggce-booking-wizard__summary-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ivory);
  margin: 0 0 20px;
}

.ggce-booking-wizard__event {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.ggce-booking-wizard__event-thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  flex-shrink: 0;
}

.ggce-booking-wizard__event strong {
  display: block;
  font-size: 13px;
  color: var(--ivory);
  margin-bottom: 4px;
  line-height: 1.35;
}

.ggce-booking-wizard__event span {
  font-size: 11px;
  color: var(--stone);
}

.ggce-booking-wizard__lines {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.ggce-booking-wizard__lines li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--stone);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.ggce-booking-wizard__lines li span:last-child {
  color: var(--ivory);
  white-space: nowrap;
}

.ggce-booking-wizard__total {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 20px;
  padding-top: 8px;
}

.ggce-booking-wizard__total > span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--stone);
}

.ggce-booking-wizard__total strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.ggce-booking-wizard__secure {
  font-size: 11px;
  color: var(--stone);
  line-height: 1.5;
  margin: 0;
  padding: 14px;
  background: var(--ink);
  border: 1px solid var(--line);
}

@media (max-width: 960px) {
  .ggce-booking-wizard {
    padding: 40px 20px 60px;
  }

  .ggce-booking-wizard__layout {
    grid-template-columns: 1fr;
  }

  .ggce-booking-wizard__summary {
    position: static;
    order: -1;
  }

  .ggce-booking-wizard__grid--2 {
    grid-template-columns: 1fr;
  }

  .ggce-booking-wizard__review-dl {
    grid-template-columns: 1fr;
  }
}

/* Booking + my account (existing) */
.ggce-booking-form .widefat { max-width: 100%; }
.ggce-my-bookings .ggce-booking-order {
  border: 1px solid var(--line);
  padding: 20px;
  margin-bottom: 20px;
}
.ggce-ticket-refs { margin-top: 8px; padding-left: 18px; }
.ggce-ticket-refs code { color: var(--gold); }

/* Single event v2 — Alali white/black */
body.alali-site.ggce-event-single-v2-page .ggce-main.ggce-event-single-v2 {
  background: var(--alali-white, #fff);
  color: var(--alali-ink, #111);
  padding-top: 0;
}

body.alali-site.ggce-event-single-v2-page .ggce-event-hero-v2 {
  color: #fff;
}

body.alali-site.ggce-event-single-v2-page .ggce-event-hero-v2__overlay {
  background: linear-gradient(
    to bottom,
    rgba(17, 17, 17, 0.25) 0%,
    rgba(17, 17, 17, 0.65) 55%,
    rgba(17, 17, 17, 0.88) 100%
  );
}

body.alali-site.ggce-event-single-v2-page .ggce-event-hero-v2__crumbs a {
  color: rgba(255, 255, 255, 0.72);
}

body.alali-site.ggce-event-single-v2-page .ggce-event-hero-v2__crumbs a:hover {
  color: #fff;
}

body.alali-site.ggce-event-single-v2-page .ggce-event-hero-v2__badge {
  background: #fff;
  color: var(--alali-ink, #111);
}

body.alali-site.ggce-event-single-v2-page .ggce-event-hero-v2__title,
body.alali-site.ggce-event-single-v2-page .ggce-event-hero-v2__title em,
body.alali-site.ggce-event-single-v2-page .ggce-event-hero-v2__emphasis {
  color: #fff;
}

body.alali-site.ggce-event-single-v2-page .ggce-event-hero-v2__quick li {
  color: rgba(255, 255, 255, 0.78);
}

body.alali-site.ggce-event-single-v2-page .ggce-event-hero-v2__quick svg {
  fill: #fff;
}

body.alali-site.ggce-event-single-v2-page .ggce-event-section-label,
body.alali-site.ggce-event-single-v2-page .ggce-event-about__subtitle,
body.alali-site.ggce-event-single-v2-page .ggce-event-booking-card__title,
body.alali-site.ggce-event-single-v2-page .ggce-event-details-card__title,
body.alali-site.ggce-event-single-v2-page .ggce-masterclass-card__title,
body.alali-site.ggce-event-single-v2-page .ggce-event-programme__title {
  color: var(--alali-ink, #111);
}

body.alali-site.ggce-event-single-v2-page .ggce-event-about__content.ggce-prose,
body.alali-site.ggce-event-single-v2-page .ggce-event-masterclasses__intro,
body.alali-site.ggce-event-single-v2-page .ggce-masterclass-card__desc,
body.alali-site.ggce-event-single-v2-page .ggce-event-programme__desc,
body.alali-site.ggce-event-single-v2-page .ggce-event-booking-card__note,
body.alali-site.ggce-event-single-v2-page .ggce-event-booking-card__seats-label,
body.alali-site.ggce-event-single-v2-page .ggce-event-booking-card__status,
body.alali-site.ggce-event-single-v2-page .ggce-event-details-card__label {
  color: var(--alali-muted, #5c5c5c);
}

body.alali-site.ggce-event-single-v2-page .ggce-event-about__content.ggce-prose a,
body.alali-site.ggce-event-single-v2-page .ggce-event-booking-card__price,
body.alali-site.ggce-event-single-v2-page .ggce-masterclass-card__schedule,
body.alali-site.ggce-event-single-v2-page .ggce-masterclass-card__price,
body.alali-site.ggce-event-single-v2-page .ggce-masterclass-card__syllabus summary,
body.alali-site.ggce-event-single-v2-page .ggce-event-programme__day-dot,
body.alali-site.ggce-event-single-v2-page .ggce-event-programme__day-label,
body.alali-site.ggce-event-single-v2-page .ggce-event-programme__time,
body.alali-site.ggce-event-single-v2-page .ggce-event-details-card__value {
  color: var(--alali-ink, #111);
}

body.alali-site.ggce-event-single-v2-page .ggce-event-theme-callout {
  background: #f3f4f6;
  border-left-color: var(--alali-ink, #111);
}

body.alali-site.ggce-event-single-v2-page .ggce-event-theme-callout__quote {
  color: var(--alali-ink, #111);
}

body.alali-site.ggce-event-single-v2-page .ggce-event-booking-card,
body.alali-site.ggce-event-single-v2-page .ggce-event-details-card,
body.alali-site.ggce-event-single-v2-page .ggce-masterclass-card {
  background: var(--alali-white, #fff);
  border: 1px solid var(--alali-line, rgba(17, 17, 17, 0.12));
}

body.alali-site.ggce-event-single-v2-page .ggce-event-booking-card {
  border-top: 3px solid var(--alali-ink, #111);
}

body.alali-site.ggce-event-single-v2-page .ggce-masterclass-card:hover {
  border-color: rgba(17, 17, 17, 0.28);
}

body.alali-site.ggce-event-single-v2-page .ggce-event-booking-card__bar {
  background: #e8e8e8;
}

body.alali-site.ggce-event-single-v2-page .ggce-event-booking-card__bar-fill {
  background: var(--alali-ink, #111);
}

body.alali-site.ggce-event-single-v2-page .ggce-event-details-card__icon {
  background: var(--alali-ink, #111);
}

body.alali-site.ggce-event-single-v2-page .ggce-event-programme__day {
  background: #fafafa;
  border: 1px solid var(--alali-line, rgba(17, 17, 17, 0.12));
}

body.alali-site.ggce-event-single-v2-page .ggce-event-programme__day-sep,
body.alali-site.ggce-event-single-v2-page .ggce-event-programme__day-date {
  color: var(--alali-muted, #5c5c5c);
}

body.alali-site.ggce-event-single-v2-page .ggce-event-programme__day .ggce-event-programme__item {
  border-bottom-color: var(--alali-line, rgba(17, 17, 17, 0.12));
}

body.alali-site.ggce-event-single-v2-page .ggce-event-programme__marker {
  background: var(--alali-ink, #111);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.1);
}

body.alali-site.ggce-event-single-v2-page .ggce-booking-form--sidebar .ggce-ticket-type,
body.alali-site.ggce-event-single-v2-page .ggce-booking-form--sidebar .ggce-qty,
body.alali-site.ggce-event-single-v2-page .ggce-booking-form--sidebar .ggce-booking-form__select,
body.alali-site.ggce-event-single-v2-page .ggce-booking-form--sidebar .ggce-att-name,
body.alali-site.ggce-event-single-v2-page .ggce-booking-form--sidebar .ggce-att-email {
  background: var(--alali-white, #fff);
  border-color: var(--alali-line, rgba(17, 17, 17, 0.12));
  color: var(--alali-ink, #111);
}

body.alali-site.ggce-event-single-v2-page .ggce-booking-form--sidebar .ggce-ticket-type__price {
  color: var(--alali-ink, #111);
}

body.alali-site.ggce-event-single-v2-page .btn.btn-gold {
  background: var(--alali-ink, #111);
  color: #fff;
}

body.alali-site.ggce-event-single-v2-page .btn.btn-gold:hover {
  background: #222;
  color: #fff;
}

body.alali-site.ggce-event-single-v2-page .btn.btn-ghost {
  border-color: rgba(17, 17, 17, 0.35);
  color: var(--alali-ink, #111);
}

body.alali-site.ggce-event-single-v2-page .btn.btn-ghost:hover {
  border-color: var(--alali-ink, #111);
  color: var(--alali-ink, #111);
}

/* Events calendar — Alali white/black */
body.alali-site.ggce-events-calendar-page .ggce-main {
  background: var(--alali-white, #fff);
}

body.alali-site .ggce-events-calendar {
  --alali-gutter: 48px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 64px var(--alali-gutter) 80px;
  box-sizing: border-box;
  color: var(--alali-ink, #111);
}

.ggce-events-calendar__hero {
  margin-bottom: 40px;
  max-width: 720px;
}

.ggce-events-calendar__eyebrow {
  font-family: var(--alali-sans, 'Inter', sans-serif);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--alali-muted, #5c5c5c);
  margin: 0 0 16px;
}

.ggce-events-calendar__title {
  font-family: var(--alali-serif, 'Cormorant Garamond', serif);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--alali-ink, #111);
  margin: 0 0 16px;
}

.ggce-events-calendar__title em {
  font-style: italic;
  color: inherit;
}

.ggce-events-calendar__desc {
  font-family: var(--alali-sans, 'Inter', sans-serif);
  color: var(--alali-muted, #5c5c5c);
  font-size: 0.9375rem;
  max-width: 560px;
  line-height: 1.7;
  margin: 0 0 24px;
}

.ggce-events-calendar__note {
  margin: 0;
  padding: 18px 20px 18px 24px;
  background: #f3f4f6;
  border-left: 4px solid var(--alali-ink, #111);
}

.ggce-events-calendar__note p {
  margin: 0;
  font-family: var(--alali-sans, 'Inter', sans-serif);
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--alali-muted, #5c5c5c);
}

.ggce-events-calendar__filters {
  margin-bottom: 28px;
}

.ggce-events-calendar__filters .ggce-events-filter-bar {
  margin-bottom: 0;
}

body.alali-site .ggce-events-calendar__filters .ggce-events-filter-search,
body.alali-site .ggce-events-calendar__filters .ggce-events-filter-select__el {
  background: var(--alali-white, #fff);
  border: 1px solid var(--alali-line, rgba(17, 17, 17, 0.12));
  color: var(--alali-ink, #111);
}

body.alali-site .ggce-events-calendar__filters .ggce-events-filter-search__icon {
  fill: var(--alali-muted, #5c5c5c);
}

body.alali-site .ggce-events-calendar__filters .ggce-events-filter-search__input {
  color: var(--alali-ink, #111);
}

body.alali-site .ggce-events-calendar__filters .ggce-events-filter-search__input::placeholder {
  color: var(--alali-muted, #5c5c5c);
}

body.alali-site .ggce-events-calendar__filters .ggce-events-filter-reset {
  color: var(--alali-muted, #5c5c5c);
}

body.alali-site .ggce-events-calendar__filters .ggce-events-filter-reset:hover {
  color: var(--alali-ink, #111);
}

.ggce-events-calendar.is-loading-month .ggce-cal-month,
.ggce-events-calendar.is-loading-day .ggce-cal-day-panel {
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.ggce-events-calendar__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

body.alali-site .ggce-events-calendar__month-panel,
body.alali-site .ggce-events-calendar__day-panel {
  background: var(--alali-white, #fff);
  border: 1px solid var(--alali-line, rgba(17, 17, 17, 0.12));
  border-radius: 10px;
  backdrop-filter: none;
}

.ggce-cal-month {
  padding: 28px 24px 32px;
}

.ggce-cal-month__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.ggce-cal-month__label {
  font-family: var(--alali-serif, 'Cormorant Garamond', serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0;
  color: var(--alali-ink, #111);
}

.ggce-cal-month__nav-btn {
  background: transparent;
  border: none;
  color: var(--alali-muted, #5c5c5c);
  font-family: var(--alali-sans, 'Inter', sans-serif);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 0;
}

.ggce-cal-month__nav-btn:hover {
  color: var(--alali-ink, #111);
}

.ggce-cal-month__weekdays,
.ggce-cal-month__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.ggce-cal-month__weekdays {
  margin-bottom: 10px;
}

.ggce-cal-month__weekdays span {
  text-align: center;
  font-family: var(--alali-sans, 'Inter', sans-serif);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--alali-muted, #5c5c5c);
}

.ggce-cal-month__day {
  appearance: none;
  background: transparent;
  border: none;
  color: var(--alali-ink, #111);
  cursor: pointer;
  min-height: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 999px;
  position: relative;
  padding: 6px;
}

.ggce-cal-month__day.is-outside {
  color: rgba(17, 17, 17, 0.28);
}

.ggce-cal-month__day.is-selected {
  background: var(--alali-ink, #111);
  color: var(--alali-white, #fff);
}

.ggce-cal-month__day.is-selected .ggce-cal-month__dot {
  background: var(--alali-white, #fff);
}

.ggce-cal-month__day-num {
  font-size: 14px;
  line-height: 1;
}

.ggce-cal-month__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--alali-ink, #111);
}

.ggce-cal-day-panel {
  padding: 28px 24px 32px;
  min-height: 420px;
  max-height: min(72vh, 640px);
  display: flex;
  flex-direction: column;
}

.ggce-cal-day-panel__head {
  text-align: center;
  margin-bottom: 24px;
}

.ggce-cal-day-panel__month {
  font-family: var(--alali-sans, 'Inter', sans-serif);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--alali-muted, #5c5c5c);
  margin: 0 0 14px;
}

.ggce-cal-day-panel__badge {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border: 2px solid var(--alali-ink, #111);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--alali-serif, 'Cormorant Garamond', serif);
  font-size: 1.5rem;
  color: var(--alali-ink, #111);
}

.ggce-cal-day-panel__list {
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 10px;
  flex: 1;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  touch-action: pan-y;
  scrollbar-width: thin;
  scrollbar-color: rgba(17, 17, 17, 0.25) rgba(17, 17, 17, 0.06);
}

.ggce-cal-day-panel__list::-webkit-scrollbar {
  width: 6px;
}

.ggce-cal-day-panel__list::-webkit-scrollbar-track {
  background: rgba(17, 17, 17, 0.06);
  border-radius: 999px;
  margin: 6px 0;
}

.ggce-cal-day-panel__list::-webkit-scrollbar-thumb {
  background: rgba(17, 17, 17, 0.22);
  border-radius: 999px;
  min-height: 48px;
}

.ggce-cal-day-panel__list::-webkit-scrollbar-thumb:hover {
  background: rgba(17, 17, 17, 0.35);
}

.ggce-cal-day-panel__empty {
  color: var(--alali-muted, #5c5c5c);
  text-align: center;
  padding: 32px 12px;
}

.ggce-cal-day-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--alali-line, rgba(17, 17, 17, 0.12));
}

.ggce-cal-day-item:last-child {
  border-bottom: 0;
}

.ggce-cal-day-item__thumb {
  display: block;
  width: 72px;
  height: 72px;
  overflow: hidden;
  border: 1px solid var(--alali-line, rgba(17, 17, 17, 0.12));
  border-radius: 6px;
}

.ggce-cal-day-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ggce-cal-day-item__thumb--placeholder {
  background: #f3f4f6;
}

.ggce-cal-day-item__time {
  font-family: var(--alali-sans, 'Inter', sans-serif);
  color: var(--alali-muted, #5c5c5c);
  font-size: 12px;
  margin: 0 0 8px;
}

.ggce-cal-day-item__title {
  font-family: var(--alali-sans, 'Inter', sans-serif);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  margin: 0 0 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.ggce-cal-day-item__title a {
  color: var(--alali-ink, #111);
  text-decoration: none;
}

.ggce-cal-day-item__title a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ggce-cal-day-item__title em {
  color: inherit;
  font-style: italic;
  font-family: var(--alali-serif, 'Cormorant Garamond', serif);
}

.ggce-cal-day-item__badge {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 8px;
}

.ggce-cal-day-item__badge--sold {
  background: #fee2e2;
  color: #991b1b;
}

.ggce-cal-day-item__badge--status {
  background: #f3f4f6;
  color: var(--alali-ink, #111);
}

.ggce-cal-day-item__location,
.ggce-cal-day-item__price {
  font-family: var(--alali-sans, 'Inter', sans-serif);
  color: var(--alali-muted, #5c5c5c);
  font-size: 12px;
  margin: 0 0 6px;
}

@media (max-width: 960px) {
  body.alali-site .ggce-events-calendar {
    --alali-gutter: 20px;
    padding: 48px var(--alali-gutter) 64px;
  }

  .ggce-events-calendar__layout {
    grid-template-columns: 1fr;
  }

  .ggce-cal-day-panel {
    min-height: 240px;
    max-height: min(58vh, 520px);
  }

  .ggce-cal-day-panel__list {
    padding-right: 8px;
    scrollbar-width: thin;
  }

  .ggce-cal-day-panel__list::-webkit-scrollbar {
    width: 5px;
  }
}
