/* Tickets flow styles */

/* ---------- tickets.html (landing) ---------- */
.tickets-page-root {
  width: 100%;
  min-height: 100vh;
  background: #f2f2f2;
}

.tickets-hero {
  position: relative;
  min-height: 560px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 40px 56px;
}

.tickets-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 15%, rgba(0, 0, 0, 0.62) 100%);
}

.tickets-hero-title {
  position: relative;
  margin: 0;
  color: #ffffff;
  font-family: 'Grumpy W05 Black36', serif;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  z-index: 1;
}

.tickets-admission-section {
  background: #ffffff;
  padding: 34px 24px 48px;
}

.tickets-admission-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.tickets-admission-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.tickets-admission-title {
  margin: 0;
  color: #171717;
  font-family: 'Grumpy W05 Black36', serif;
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1;
  font-weight: 400;
}

.tickets-admission-calendar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1d2533;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.tickets-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 980px) {
  .tickets-cards-grid {
    grid-template-columns: 1fr;
  }
}

.tickets-card {
  background: #f5f5f5;
}

.tickets-card-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.tickets-card-body {
  padding: 14px 16px 18px;
}

.tickets-card-title {
  margin: 0 0 10px;
  color: #1d2533;
  font-family: 'Roboto', sans-serif;
  font-size: 31px;
  line-height: 1.08;
  font-weight: 700;
}

.tickets-card-text {
  margin: 0;
  color: #1d2533;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.45;
}

.tickets-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #171717;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
}

/* ============================================================
   tickets-get.html (checkout)
   ============================================================ */
.checkout-root {
  min-height: 100vh;
  width: 100%;
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  background: #ffffff;
}

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

.checkout-left {
  background: #5e6578;
  color: #ffffff;
  padding: 44px 62px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 900px) {
  .checkout-left {
    padding: 20px 14px;
  }
}

.checkout-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.home-badge {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
  cursor: pointer;
  background: transparent;
  padding: 0;
  text-decoration: none;
}

.home-icon {
  width: 12px;
  height: 12px;
  display: block;
}

.checkout-title {
  margin: 34px 0 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
}

@media (max-width: 900px) {
  .checkout-title {
    margin: 18px 0 12px;
    font-size: 30px;
  }
}

.checkout-section-label {
  margin: 0 0 12px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.checkout-divider {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.55);
}

.checkout-selected-row {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  align-items: center;
}

@media (max-width: 900px) {
  .checkout-selected-row {
    grid-template-columns: 120px 1fr;
    gap: 10px;
  }
}

.checkout-selected-image {
  width: 150px;
  height: 86px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .checkout-selected-image {
    width: 120px;
    height: 72px;
  }
}

.checkout-selected-title {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.checkout-selected-hint {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
}

.checkout-selected-meta {
  margin-top: 8px;
}

.checkout-selected-date-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.checkout-selected-formula {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.95);
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

.checkout-selected-bottom-divider {
  width: 100%;
  height: 1px;
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.25);
}

.checkout-selected-total-row {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
}

.checkout-left-actions {
  margin-top: auto;
  display: grid;
  gap: 12px;
  padding-top: 24px;
}

@media (max-width: 900px) {
  .checkout-left-actions {
    position: sticky;
    bottom: 0;
    background: #5e6578;
    padding-top: 12px;
    padding-bottom: 8px;
    z-index: 2;
  }
}

.checkout-left-action-button {
  height: 48px;
  border: none;
  background: #f1f1f1;
  color: #171717;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.checkout-left-action-button.is-primary {
  background: #188a00;
  color: #ffffff;
}

@media (max-width: 900px) {
  .checkout-left-action-button {
    height: 46px;
    font-size: 12px;
    border-radius: 6px;
  }
}

.checkout-right {
  background: #ffffff;
  color: #161616;
  padding: 28px 100px 34px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 900px) {
  .checkout-right {
    padding: 16px 12px 18px;
  }
}

/* shared step wrapper (date / time / tickets) */
.checkout-step-wrap {
  width: 100%;
  min-height: calc(100vh - 62px);
  display: flex;
  flex-direction: column;
}

@media (max-width: 900px) {
  .checkout-step-wrap {
    min-height: auto;
  }
}

.checkout-confirm-wrap {
  width: 100%;
}

.date-heading {
  margin: 86px 0 12px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 900px) {
  .date-heading {
    margin: 18px 0 10px;
  }
}

.ticket-option-block {
  margin-top: 34px;
  margin-bottom: 18px;
}

.ticket-option-title {
  margin: 0 0 10px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.ticket-option-line {
  height: 1px;
  background: #1f1f1f;
  margin-bottom: 16px;
}

.ticket-option-text {
  margin: 0 0 14px;
  color: #2b2b2b;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  line-height: 1.35;
}

.ticket-option-subtext {
  margin: 0 0 12px;
  color: #171717;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.ticket-option-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  cursor: pointer;
  user-select: none;
  color: #171717;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
}

.ticket-option-input {
  width: 18px;
  height: 18px;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #212121;
  border-radius: 6px;
  background: #e6e8eb;
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.ticket-option-input:checked {
  background: #e6f6e8;
  border-color: #1a9f2b;
}

.ticket-option-input:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #1a9f2b;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ---- time step ---- */
.time-step-title {
  margin: 86px 0 12px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.time-step-line {
  height: 1px;
  background: #1f1f1f;
  margin-bottom: 12px;
}

.time-step-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 18px;
}

@media (max-width: 900px) {
  .time-step-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.time-date-card {
  background: #f1f1f1;
  padding: 12px 14px;
  color: #1b1b1b;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.time-panel {
  background: #f1f1f1;
  padding: 12px;
}

.time-panel-title {
  margin: 0 0 10px;
  color: #1b1b1b;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}

.time-slot-button {
  height: 44px;
  border: 1px solid transparent;
  background: #ffffff;
  color: #1c1c1c;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.time-slot-button.is-selected {
  border: 1px solid #1a9f2b;
  background: #e6f6e8;
}

/* ---- calendar ---- */
.calendar-block {
  width: 100%;
}

@media (max-width: 900px) {
  .calendar-block {
    margin-bottom: 10px;
  }
}

.calendar-top-line {
  height: 1px;
  background: #1f1f1f;
  margin-bottom: 10px;
}

.calendar-head {
  display: grid;
  grid-template-columns: repeat(7, 34px);
  column-gap: 10px;
  align-items: center;
  margin-bottom: 8px;
  color: #141414;
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.calendar-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .calendar-head {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    column-gap: 6px;
  }
}

.week-day-label {
  color: #141414;
}

.week-day-label.is-muted {
  color: #b7bcc7;
}

.calendar-main {
  display: grid;
  grid-template-columns: 320px 120px 1fr;
  gap: 14px;
  align-items: start;
}

@media (max-width: 900px) {
  .calendar-main {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.calendar-days-column {
  width: 320px;
  min-width: 320px;
}

@media (max-width: 900px) {
  .calendar-days-column {
    width: 100%;
    min-width: 0;
  }
}

.days-grid {
  display: grid;
  grid-template-columns: repeat(7, 34px);
  column-gap: 10px;
  row-gap: 6px;
  color: #272727;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
}

@media (max-width: 900px) {
  .days-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    column-gap: 6px;
  }
}

.calendar-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-left: 16px;
}

@media (max-width: 900px) {
  .calendar-aside {
    margin-left: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}

.calendar-month-title {
  margin: 0;
  color: #141414;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.month-nav-button {
  width: 30px;
  height: 30px;
  border-radius: 11px;
  border: 1px solid #212121;
  background: transparent;
  color: #1f1f1f;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.month-nav-button[hidden] {
  display: none;
}

@media (max-width: 900px) {
  .month-nav-button {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
}

.month-nav-buttons {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 900px) {
  .month-nav-buttons {
    gap: 8px;
  }
}

.month-nav-icon {
  width: 16px;
  height: 12px;
  display: block;
}

.month-nav-icon.is-left {
  transform: rotate(180deg);
}

@media (max-width: 900px) {
  .month-nav-icon {
    width: 15px;
    height: 11px;
  }
}

.legend-labels {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 6px;
  color: #1d1d1d;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

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

.legend-dots {
  margin-top: 92px;
  display: grid;
  justify-items: end;
  row-gap: 6px;
}

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

.legend-dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  display: inline-block;
  border: 1px solid #232323;
  background: #efefef;
}

.legend-dot.is-selected {
  background: #c5e4b9;
}

.day-cell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: #222;
  font-weight: 500;
  border: 1px solid transparent;
  background: transparent;
  transition: background-color 0.16s ease;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  padding: 0;
}

.day-cell.is-muted,
.day-cell.is-past,
.day-cell.is-disabled {
  color: #c4c9d1;
  cursor: default;
}

.day-cell.is-selected {
  font-weight: 700;
  border: 1px solid #798195;
  background: #e9ecef;
}

.day-cell:not(.is-muted):not(.is-past):not(.is-disabled):hover {
  background: #d2e6cc;
}

@media (max-width: 900px) {
  .day-cell {
    width: 100%;
    height: 30px;
    border-radius: 9px;
    font-size: 11px;
  }
}

.bottom-next {
  margin-top: auto;
  margin-left: auto;
  width: 360px;
  height: 56px;
  border: none;
  background: #f3f3f3;
  color: #c3c3c3;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.bottom-next:not(:disabled) {
  color: #111111;
  cursor: pointer;
}

.bottom-next:not(:disabled):hover {
  background: #575f6f;
  color: #ffffff;
}

@media (max-width: 900px) {
  .bottom-next {
    width: 100%;
    margin-left: 0;
    margin-top: 12px;
    height: 48px;
    font-size: 13px;
    border-radius: 6px;
  }
}

/* ---- tickets step ---- */
.tickets-step-title {
  margin: 86px 0 12px;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
}

@media (max-width: 900px) {
  .tickets-step-title {
    margin: 18px 0 10px;
    font-size: 18px;
  }
}

.tickets-step-line {
  height: 1px;
  background: #1f1f1f;
  margin-bottom: 14px;
}

.ticket-rows {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.ticket-row {
  display: grid;
  grid-template-columns: 110px 1fr 150px;
  gap: 8px;
}

@media (max-width: 900px) {
  .ticket-row {
    grid-template-columns: 80px 1fr 116px;
    gap: 6px;
  }
}

.ticket-price {
  min-height: 48px;
  background: #ececec;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-family: 'Roboto', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #242424;
}

@media (max-width: 900px) {
  .ticket-price {
    padding: 0 8px;
    font-size: 15px;
  }
}

.ticket-name {
  min-height: 48px;
  background: #ececec;
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #2b2b2b;
}

@media (max-width: 900px) {
  .ticket-name {
    padding: 0 10px;
    font-size: 11px;
  }
}

.ticket-counter {
  min-height: 48px;
  background: #5d6679;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  justify-items: center;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.counter-button {
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: 1;
  cursor: pointer;
}

/* ---- confirm step ---- */
.confirm-title {
  margin: 86px 0 12px;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
}

@media (max-width: 900px) {
  .confirm-title {
    margin: 18px 0 10px;
    font-size: 18px;
  }
}

.confirm-line {
  height: 1px;
  background: #1f1f1f;
  margin-bottom: 14px;
}

.confirm-card {
  min-height: 74px;
  background: #ececef;
  border: 1px solid #d2d6de;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
}

.confirm-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d7dbe3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.confirm-text {
  margin: 0;
  color: #2a2a2a;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.35;
}

.tickets-step-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 900px) {
  .tickets-step-actions {
    position: sticky;
    bottom: 0;
    background: #ffffff;
    padding-top: 10px;
    padding-bottom: 6px;
    z-index: 2;
  }
}

.tickets-step-action-button {
  height: 48px;
  border: none;
  background: #f1f1f1;
  color: #171717;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.tickets-step-action-button:disabled {
  color: #b8c0c9;
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .tickets-step-action-button {
    height: 46px;
    border-radius: 6px;
  }
}

/* utility for JS-driven visibility */
.is-hidden {
  display: none !important;
}

/* ============================================================
   tickets-cart.html
   ============================================================ */
.cart-root {
  min-height: 100vh;
  background: #f7f7f7;
}

.cart-content {
  padding: 150px 200px 110px;
}

@media (max-width: 900px) {
  .cart-content {
    padding: 88px 14px 28px;
  }
}

.cart-title {
  margin: 0 0 36px;
  color: #191919;
  font-family: 'Grumpy W05 Black36', serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

@media (max-width: 900px) {
  .cart-title {
    margin: 0 0 16px;
    font-size: 42px;
  }
}

.cart-hint {
  margin: 0 0 10px;
  color: #292929;
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
}

@media (max-width: 900px) {
  .cart-hint {
    font-size: 15px;
  }
}

.cart-top-line {
  width: 100%;
  height: 1px;
  background: #dfdfdf;
}

.cart-item {
  padding: 16px 0 10px;
}

.cart-main-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: start;
  gap: 24px;
}

@media (max-width: 900px) {
  .cart-main-row {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }
}

.cart-item-name {
  margin: 0;
  color: #202020;
  font-family: 'Roboto', sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}

@media (max-width: 900px) {
  .cart-item-name {
    font-size: 20px;
  }
}

.cart-date {
  margin: 6px 0 0;
  color: #303030;
  font-family: 'Roboto', sans-serif;
  font-size: 28px;
  line-height: 1.2;
}

@media (max-width: 900px) {
  .cart-date {
    font-size: 16px;
  }
}

.cart-price {
  margin-top: 2px;
  color: #1f1f1f;
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  line-height: 1;
}

@media (max-width: 900px) {
  .cart-price {
    font-size: 22px;
    align-self: center;
  }
}

.trash-button {
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  color: #36303d;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 900px) {
  .trash-button {
    grid-column: 2;
    justify-self: end;
  }
}

.cart-meta-bar {
  margin-top: 10px;
  min-height: 30px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  background: #ececec;
  color: #4a4a4a;
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  padding: 0 8px;
}

@media (max-width: 900px) {
  .cart-meta-bar {
    margin-top: 8px;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 8px 10px;
    font-size: 13px;
  }
}

.cart-totals {
  margin-top: 22px;
  margin-left: auto;
  width: 300px;
  display: grid;
  gap: 6px;
}

@media (max-width: 900px) {
  .cart-totals {
    margin-top: 16px;
    width: 100%;
  }
}

.totals-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #939393;
  font-family: 'Roboto', sans-serif;
  font-size: 28px;
  line-height: 1.1;
}

.totals-row.is-strong {
  color: #1a1a1a;
  font-size: 34px;
}

@media (max-width: 900px) {
  .totals-row {
    font-size: 20px;
  }
  .totals-row.is-strong {
    font-size: 24px;
  }
}

.cart-email-field-wrap {
  margin-top: 16px;
  margin-left: auto;
  width: 260px;
}

@media (max-width: 900px) {
  .cart-email-field-wrap {
    width: 100%;
    margin-left: 0;
  }
}

.cart-email-label {
  display: block;
  margin: 0 0 6px;
  color: #2b2b2b;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
}

.cart-email-input {
  width: 100%;
  height: 46px;
  border: 1px solid #cfcfcf;
  background: #fff;
  padding: 0 12px;
  box-sizing: border-box;
  color: #1f1f1f;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
}

.cart-checkout-button {
  margin-top: 18px;
  margin-left: auto;
  width: 260px;
  height: 56px;
  border: none;
  background: #202125;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  cursor: pointer;
  display: block;
}

.cart-checkout-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

@media (max-width: 900px) {
  .cart-checkout-button {
    width: 100%;
    margin-left: 0;
    height: 50px;
    font-size: 17px;
  }
}

.cart-note {
  margin: 44px 0 0;
  max-width: 1460px;
  color: #252525;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .cart-note {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.4;
  }
}

/* ============================================================
   payment.html
   ============================================================ */
.pay-page-wrap {
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.pay-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) 0 0;
  width: 100%;
}

.pay-brand-block {
  text-align: left;
  margin-bottom: 2rem;
  width: 100%;
  padding: 0 clamp(1rem, 4vw, 2rem);
  box-sizing: border-box;
}

.pay-brand-inner {
  text-align: left;
  max-width: 440px;
  margin: 0 auto;
  padding-left: clamp(1.5rem, 3vw, 2rem);
  padding-right: clamp(1.5rem, 3vw, 2rem);
  box-sizing: border-box;
}

.pay-brand-line {
  display: block;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 600;
  color: #888;
  line-height: 1.2;
}

.pay-brand-bold {
  display: block;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 600;
  color: #145045;
  line-height: 1.2;
}

.pay-order-num {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 13px;
  margin: 0.75rem 0 0;
}

.pay-order-num-label {
  color: #888;
}

.pay-order-num-value {
  color: #000;
  font-weight: 600;
}

.pay-form-strip {
  background: #efefef;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 4vw, 2rem);
}

.pay-card {
  width: 100%;
  max-width: 440px;
  padding: clamp(0.35rem, 1vw, 0.5rem) clamp(1.5rem, 3vw, 2rem);
}

.pay-field-label {
  display: block;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.4rem;
}

.pay-card-number-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.pay-input {
  flex: 1;
  padding: 0.65rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  color: #333;
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
  box-sizing: border-box;
}

.pay-input:focus {
  border-color: #145045;
}

.pay-input.is-error {
  border-color: #e04040;
}

.pay-input.is-error:focus {
  border-color: #e04040;
}

.pay-small-input {
  width: 55px;
  flex: none;
}

.pay-card-icons {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.pay-card-icon {
  height: 28px;
  width: auto;
  background: #fff;
  border-radius: 6px;
  padding: 4px;
  box-sizing: content-box;
}

.pay-expiry-row {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.pay-expiry-row-spacer {
  width: 76px;
  flex-shrink: 0;
  margin-left: 0.75rem;
}

.pay-expiry-fields {
  display: flex;
  gap: 0.35rem;
}

.pay-cvv-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  align-items: flex-end;
}

.pay-cvv-field-wrap {
  width: 90px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pay-cvv-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.4rem;
}

.pay-cvv-label .pay-field-label {
  margin: 0;
}

.pay-cvv-input {
  width: 100%;
  box-sizing: border-box;
}

.pay-question-icon {
  width: 16px;
  height: 16px;
  cursor: help;
}

.pay-error-slot {
  min-height: 1.25rem;
  margin-top: 0.15rem;
}

.pay-error-slot.is-tight {
  margin-top: -0.65rem;
}

.pay-error-msg {
  display: block;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 10px;
  line-height: 1.2;
  color: #e04040;
}

.pay-btn-row {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.pay-btn-icons-placeholder {
  visibility: hidden;
  pointer-events: none;
  flex-shrink: 0;
}

.pay-btn {
  flex: 1;
  padding: 0.85rem;
  border: none;
  border-radius: 4px;
  background: #145045;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  text-align: center;
  transition: background 0.15s;
  opacity: 1;
}

.pay-btn:hover {
  background: #0f3d35;
}

.pay-btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.pay-btn:disabled:hover {
  background: #145045;
}

.pay-cancel-row-wrap {
  width: 100%;
  max-width: 440px;
  padding: 0 clamp(1.5rem, 3vw, 2rem);
  box-sizing: border-box;
}

.pay-cancel-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.5rem 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.75rem;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  background: #fff;
  transition: background 0.15s;
}

.pay-cancel-row:hover {
  background: #f5f5f5;
}

.pay-ban-icon {
  width: 18px;
  height: 18px;
}

.pay-cancel-text {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  color: #888;
}

.pay-footer-bar {
  background: #132b2b;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 0.75rem 1rem;
}

.pay-footer-logo {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.pay-footer-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pay-footer-item {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.pay-footer-icon {
  width: 14px;
  height: 14px;
}

.pay-footer-icon.is-inverted {
  filter: brightness(0) invert(1);
}

.pay-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.pay-modal-box {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.pay-loading-spinner {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  border: 4px solid #e0e0e0;
  border-top-color: #145045;
  border-radius: 50%;
  animation: pay-spin 0.8s linear infinite;
}

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

.pay-loading-text {
  margin: 0;
  font-size: 1rem;
  color: #555;
}

.pay-success-title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #145045;
}

.pay-success-text {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: #333;
  line-height: 1.5;
}

.pay-countdown-text {
  margin: 0;
  font-size: 0.875rem;
  color: #888;
}
