/* =====================================================
   Tazkarti — Static PHP Clone Stylesheet
   ===================================================== */

/* Cairo font (Google Fonts). For pure offline, swap to a
   local @font-face referencing Cairo TTF files in assets/. */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Cairo', Arial, Tahoma, sans-serif;
  font-size: 14px;
  background: #eeeeee;
  color: #212529;
  /* direction: rtl; */
  text-align: right;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  border: 0;
  cursor: pointer;
  background: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
input,
select,
textarea {
  font-family: inherit;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Layout container ---------- */
.tz-container {
  max-width: 1170px;
  margin-inline: auto;
  padding-inline: 15px;
  width: 100%;
}

/* ---------- Header ---------- */
.tz-header {
  background: #000;
  height: 60px;
  display: flex;
  align-items: center;
}
.tz-header__container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  direction: ltr;
}
.tz-header__right {
  display: flex;
  align-items: center;
  gap: 12px;
  order: 2;
}
.tz-header__logo {
  display: block;
  /* background: #fff; */
  padding: 4px 8px;
  border-radius: 3px;
}
.tz-header__logo img {
  height: 22px;
  width: auto;
}
/* Logo variant switch:
   - Mobile (< 768px) on non-home pages: header is BLACK → green logo
   - Desktop (>= 768px) on non-home pages: header is GREEN → white logo
   - Home page (any size): always green logo (header is transparent over dark hero) */
.tz-header__logo-img--green { display: block; }
.tz-header__logo-img--white { display: none; }
@media (min-width: 768px) {
  .tz-header__logo-img--green { display: none; }
  .tz-header__logo-img--white { display: block; }
}
body.tz-home .tz-header__logo-img--green { display: block; }
body.tz-home .tz-header__logo-img--white { display: none; }
.tz-header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.tz-header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
}
.tz-header__hamburger span:last-child {
  width: 14px;
}
.tz-header__links {
  display: flex;
  align-items: center;
  gap: 8px;
  order: 1;
}
.tz-header__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  transition: background 0.2s;
  font-size: 12px;
  position: relative;
}
.tz-header__link:hover {
  background: rgba(255, 255, 255, 0.25);
}
.tz-header__link span {
  display: none;
}
.tz-header__lang-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  min-width: 140px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding: 4px 0;
  z-index: 30;
  display: none;
}
.tz-header__lang-menu.is-open {
  display: block;
}
.tz-header__lang-menu button {
  width: 100%;
  text-align: right;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #616161;
  padding: 6px 12px;
  background: transparent;
}
.tz-header__lang-menu button:hover {
  background: #f4f4f4;
}
.tz-header__lang-menu .flag {
  display: inline-block;
  width: 20px;
  height: 12px;
  border-radius: 2px;
}
.tz-header__lang-menu .flag--ar {
  background: linear-gradient(to bottom, #ff4b55, #fff, #464655);
}
.tz-header__lang-menu .flag--en {
  background: linear-gradient(to bottom, #ff4b55, #fff, #41479b);
}

@media (min-width: 768px) {
  .tz-header {
    background: #219f45;
    height: 65px;
  }
  .tz-header__logo {
    background: transparent;
    padding: 0;
  }
  .tz-header__logo img {
    height: 28px;
  }
  .tz-header__links {
    gap: 4px;
  }
  .tz-header__link {
    width: auto;
    height: 45px;
    padding: 0 12px;
    border-radius: 0;
    background: transparent;
  }
  .tz-header__link:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  .tz-header__link span {
    display: inline;
  }
}

/* ---------- Side nav drawer ---------- */
.tz-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.tz-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}
.tz-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.tz-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 280px;
  background: #000000;
  box-shadow: -2px 0 12px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}
.tz-drawer.is-open .tz-drawer__panel {
  transform: translateX(0);
}
.tz-drawer__head {
  background: #219f45;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.tz-drawer__close {
  position: relative;
  width: 24px;
  height: 24px;
}
.tz-drawer__close span {
  position: absolute;
  inset-inline: 0;
  top: 50%;
  display: block;
  height: 2px;
  background: #fff;
}
.tz-drawer__close span:first-child {
  transform: rotate(45deg);
}
.tz-drawer__close span:last-child {
  transform: rotate(-45deg);
}
.tz-drawer__links {
  flex: 1;
  padding: 16px 0;
}
.tz-drawer__links a {
  display: block;
  padding: 14px 24px;
  font-size: 14px;
  color: #fff;
  border-bottom: 1px solid #333;
  transition: background 0.15s;
}
.tz-drawer__links a:hover {
  background: #f4f4f4;
}
.tz-drawer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid #333;
}
.tz-drawer__social a {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #219f45;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tz-drawer__social a:hover {
  opacity: 0.9;
}

/* ---------- Buttons ---------- */
.tz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 700;
  line-height: 1;
  border-radius: 3px;
  transition: filter 0.2s;
  font-family: inherit;
}
.tz-btn:hover {
  filter: brightness(0.94);
}
.tz-btn--green {
  background: #219f45;
  color: #fff;
  padding: 9px 22px;
  font-size: 14px;
}
.tz-btn--blue {
  background: #2697d1;
  color: #fff;
  padding: 0 18px;
  font-size: 14px;
  height: 45px;
}
.tz-btn--blue-sm {
  background: #2697d1;
  color: #fff;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 3px;
}

/* ---------- Page title & filter ---------- */
.tz-page {
  flex: 1;
  background: #eeeeee;
  padding-bottom: 30px;
}
.tz-page__head {
  padding-top: 20px;
}
.tz-page__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.tz-page__title {
  font-size: 22px;
  font-weight: 400;
  color: #121212;
  line-height: 36px;
  /* margin-right: auto; */
}
.tz-filter {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  padding: 16px;
  position: relative;
  display: none;
}
.tz-filter.is-open {
  display: block;
}
.tz-filter__close {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #616161;
}
.tz-filter__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: end;
}
.tz-field label,
.tz-field > span {
  display: block;
  font-size: 12px;
  color: #616161;
  margin-bottom: 6px;
}
.tz-field input[type='text'],
.tz-field input[type='date'],
.tz-field select {
  width: 100%;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  font-size: 13px;
  color: #212529;
  height: 38px;
  padding: 0 12px;
}
.tz-field select {
  appearance: none;
  -webkit-appearance: none;
  padding-left: 32px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1l4 4 4-4' stroke='%23616161' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: left 12px center;
}
.tz-field input:focus,
.tz-field select:focus {
  outline: none;
  border-color: #2697d1;
}
.tz-filter__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}
.tz-filter__reset {
  height: 38px;
  padding: 0 16px;
  font-size: 12px;
  color: #616161;
  background: transparent;
}
.tz-filter__submit {
  background: #219f45;
  color: #fff;
  height: 38px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 3px;
}
.tz-filter__submit--blue {
  background: #2697d1;
}

@media (min-width: 768px) {
  .tz-page__head {
    padding-top: 25px;
  }
  .tz-page__title {
    font-size: 24px;
  }
  .tz-filter {
    display: block;
    padding: 20px;
  }
  .tz-filter__close {
    display: none;
  }
  .tz-filter__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
  }
  .tz-filter__actions {
    justify-content: flex-start;
  }
}

.tz-filter-toggle {
  display: inline-flex;
}
@media (min-width: 768px) {
  .tz-filter-toggle {
    display: none;
  }
}

/* ---------- Tournaments slider ---------- */
.tz-tournaments {
  margin-top: 20px;
}
.tz-tournaments__inner {
  background: #fff;
  border-radius: 4px;
  padding: 16px 12px;
}
.tz-tournaments__list {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.tz-tournaments__item {
  flex-shrink: 0;
}
.tz-tournaments__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: transparent;
  padding: 0;
}
.tz-tournaments__circle {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.tz-tournaments__btn:hover .tz-tournaments__circle {
  border-color: rgba(33, 159, 69, 0.4);
}
.tz-tournaments__btn.is-active .tz-tournaments__circle {
  border-color: #219f45;
}
.tz-tournaments__label {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
  max-width: 110px;
  color: #007ad9;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tz-tournaments__btn.is-active .tz-tournaments__label {
  color: #219f45;
}

@media (min-width: 768px) {
  .tz-tournaments__inner {
    padding: 24px;
  }
  .tz-tournaments__list {
    flex-wrap: wrap;
    overflow: visible;
    justify-content: space-around;
  }
  .tz-tournaments__circle {
    width: 90px;
    height: 90px;
  }
  .tz-tournaments__label {
    font-size: 13px;
  }
}

/* ---------- Match cards ---------- */
.tz-matches {
  margin-top: 24px;
}
.tz-match {
  background: #fff;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 0;
}
.tz-match__top {
  padding: 13px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tz-match__teams {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.tz-match__team {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tz-match__logo {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid #eee;
  background: #fff;
  flex-shrink: 0;
}
.tz-match__team-name {
  font-size: 15px;
  color: #000;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tz-match__vs {
  width: 38px;
  text-align: center;
  font-size: 14px;
  color: #616161;
  flex-shrink: 0;
}
.tz-match__divider {
  height: 1px;
  background: #eee;
}
.tz-match__blocks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tz-match__block {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tz-match__block svg {
  color: #7f7f7f;
  flex-shrink: 0;
}
.tz-match__block-text {
  font-size: 13px;
  color: #000;
}
.tz-match__block-text .muted {
  color: #616161;
}
.tz-match__date-main {
  font-size: 13px;
  color: #000;
  line-height: 1.2;
}
.tz-match__time {
  font-size: 12px;
  color: #616161;
  line-height: 1.2;
  margin-top: 2px;
}
.tz-match__top .tz-btn--green {
  display: none;
}
.tz-match__bottom {
  background: #f6f6f6;
  padding: 8px 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.tz-match__meta {
  display: flex;
  align-items: center;
  gap: 6px;
}
.tz-match__meta-label {
  font-size: 12px;
  color: #616161;
}
.tz-match__meta-value {
  font-size: 12px;
  color: #000;
}
.tz-match__status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #219f45;
}
.tz-match__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #219f45;
}
.tz-match__reserve-mobile {
  display: block;
  width: 100%;
  background: #219f45;
  color: #fff;
  font-weight: 700;
  padding: 12px;
  font-size: 14px;
  border: 0;
  transition: filter 0.2s;
}
.tz-match__reserve-mobile:hover {
  filter: brightness(0.95);
}

@media (min-width: 768px) {
  .tz-match {
    margin-bottom: 25px;
  }
  .tz-match__top {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
  }
  .tz-match__teams {
    flex-direction: row;
    align-items: center;
  }
  .tz-match__team-logos {
    display: flex;
    align-items: center;
  }
  .tz-match__team-logos .tz-match__logo + .tz-match__logo {
    margin-right: -10px;
  }
  .tz-match__team-names {
    margin-right: 8px;
  }
  .tz-match__team-row {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .tz-match__team-row .tz-match__team-name {
    font-size: 16px;
  }
  .tz-match__divider {
    display: none;
  }
  .tz-match__blocks {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
  }
  .tz-match__top .tz-btn--green {
    display: inline-flex;
  }
  .tz-match__reserve-mobile {
    display: none;
  }
  .tz-match__bottom {
    gap: 24px;
  }
}

.tz-show-more {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  margin-bottom: 35px;
}

/* ---------- Footer ---------- */
.tz-footer {
  background: #363636;
  color: #fff;
  margin-top: auto;
}
.tz-footer__inner {
  padding: 24px 0 18px;
}
.tz-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
}
.tz-footer__links img {
  height: 30px;
  width: auto;
}
.tz-footer__links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.15s;
}
.tz-footer__links a:hover {
  color: #fff;
}
.tz-footer__copy {
  margin-top: 16px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* ---------- Home Hero ---------- */
.tz-hero {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 60px - 90px);
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url('../images/LL/home-bg.70bc157e537190448e7c.jpg');
  background-size: cover;
  background-position: center;
  background-color: #0a0604;
}
.tz-hero__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 15px;
}
.tz-hero__title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}
.tz-hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin: 0 0 40px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.tz-hero__choices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.tz-hero__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 160px;
  height: 160px;
  /* border-radius: 14px; */
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s;
  padding: 0 12px;
  color: #fff;
  text-align: center;
}
.tz-hero__card:hover {
  transform: scale(1.03);
}
.tz-hero__card--orange {
    background: #f7942261;
    border: 1px solid #f79422;
}
.tz-hero__card--green {
  background: #115841a1;
  border: 1px solid #115841;
}
.tz-hero__card img {
  height: 48px;
  width: auto;
}
.tz-hero__card-title {
  font-size: 17px;
  font-weight: 700;
}
.tz-hero__card-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}
.tz-hero__auth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.tz-hero__auth-or {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}
.tz-hero__auth button,
.tz-hero__auth a {
  font-size: 14px;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 3px;
  color: #fff;
  text-decoration: none;
  transition: filter 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
}
.tz-hero__auth button:hover,
.tz-hero__auth a:hover {
  filter: brightness(0.95);
}
.tz-hero__auth-login {
  background: transparent;
  color: #fff;
  padding: 10px 14px;
}
.tz-hero__auth-login:hover {
  filter: none;
  text-decoration: underline;
}
.tz-hero__auth-register {
  background: #219f45;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .tz-hero {
    min-height: calc(100vh - 65px - 90px);
  }
  .tz-hero__inner {
    padding: 64px 15px;
  }
  .tz-hero__title {
    font-size: 44px;
  }
  .tz-hero__subtitle {
    font-size: 18px;
    margin-bottom: 56px;
  }
  .tz-hero__choices {
    gap: 32px;
  }
  .tz-hero__card {
    width: 210px;
    height: 210px;
  }
  .tz-hero__card img {
    height: 68px;
  }
  .tz-hero__card-title {
    font-size: 22px;
  }
  .tz-hero__card-sub {
    font-size: 14px;
  }
}

/* ---------- Categories grid ---------- */
.tz-categories {
  padding: 25px 0;
}
.tz-categories__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.tz-cat-card {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s;
}
.tz-cat-card:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}
.tz-cat-card__img {
  aspect-ratio: 555 / 235;
  overflow: hidden;
  background: #222;
}
.tz-cat-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.tz-cat-card:hover .tz-cat-card__img img {
  transform: scale(1.02);
}
.tz-cat-card__caption {
  text-align: center;
  padding: 18px 12px;
  font-size: 15px;
  color: #212529;
}

@media (min-width: 768px) {
  .tz-categories__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

/* ---------- Event list card ---------- */
.tz-event-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.tz-event-card__row {
  display: flex;
  flex-direction: column;
}
.tz-event-card__img {
  width: 100%;
  aspect-ratio: 1140 / 370;
  overflow: hidden;
  background: #222;
}
.tz-event-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tz-event-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}
.tz-event-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #212529;
  margin: 0;
}
.tz-event-card__shows {
  font-size: 14px;
  color: #219f45;
}
.tz-event-card__venue {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #007ad9;
  width: fit-content;
}
.tz-event-card__venue:hover {
  text-decoration: underline;
}
.tz-event-card__date,
.tz-event-card__price {
  font-size: 14px;
  color: #212529;
}
.tz-event-card__cta {
  display: inline-flex;
  font-size: 18px;
  font-weight: 700;
  color: #219f45;
  margin-top: 8px;
}
.tz-event-card__cta:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .tz-event-card__row {
    flex-direction: row;
    align-items: stretch;
  }
  .tz-event-card__img {
    width: 58%;
    aspect-ratio: 16 / 9;
    flex-shrink: 0;
  }
  .tz-event-card__info {
    padding: 28px 20px;
  }
  .tz-event-card__title {
    font-size: 24px;
  }
}

/* ---------- Event detail ---------- */
.tz-event-detail {
  padding: 20px 0;
}
.tz-event-detail__banner {
  border-radius: 6px;
  overflow: hidden;
  background: #222;
  aspect-ratio: 1140 / 370;
  margin-bottom: 20px;
}
.tz-event-detail__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tz-event-detail__head {
  background: #fff;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 16px;
}
.tz-event-detail__title {
  font-size: 18px;
  font-weight: 700;
  color: #212529;
  margin: 0 0 8px;
}
.tz-event-detail__venue {
  font-size: 14px;
  color: #212529;
  margin-bottom: 4px;
}
.tz-event-detail__venue-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #007ad9;
  margin-bottom: 8px;
}
.tz-event-detail__venue-link:hover {
  text-decoration: underline;
}
.tz-event-detail__date {
  font-size: 13px;
  color: #616161;
}
.tz-event-detail__desc {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.8;
  color: #707070;
  font-weight: 700;
  opacity: 0.85;
  text-align: center;
}
.tz-accordion {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 12px;
}
.tz-accordion__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #f4f4f4;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  cursor: pointer;
}
.tz-accordion__head .label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tz-accordion__chevron {
  transition: transform 0.2s;
}
.tz-accordion.is-open .tz-accordion__chevron {
  transform: rotate(90deg);
}
.tz-accordion__body {
  padding: 16px 20px;
  display: none;
}
.tz-accordion.is-open .tz-accordion__body {
  display: block;
}
.tz-prices-table {
  width: 100%;
  font-size: 13px;
  border-collapse: collapse;
}
.tz-prices-table th {
  text-align: right;
  padding: 8px 0;
  font-weight: 700;
  color: #212529;
  border-bottom: 1px solid #eee;
}
.tz-prices-table th:last-child {
  text-align: left;
}
.tz-prices-table td {
  padding: 8px 0;
  color: #212529;
  border-bottom: 1px solid #f4f4f4;
}
.tz-prices-table td:last-child {
  text-align: left;
  color: #219f45;
  font-weight: 700;
}
.tz-prices-table tr:last-child td {
  border: 0;
}
.tz-rules {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tz-rules li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #212529;
  margin-bottom: 8px;
}
.tz-rules li::before {
  content: '•';
  color: #219f45;
  margin-top: 6px;
  flex-shrink: 0;
}
.tz-doors {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eee;
  font-size: 13px;
  color: #616161;
}
.tz-doors div + div {
  margin-top: 4px;
}
.tz-reserve-block {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}
.tz-reserve-block__head {
  padding: 14px 20px;
  background: #f4f4f4;
  font-size: 14px;
  font-weight: 700;
  color: #333;
}
.tz-reserve-block__body {
  padding: 16px 20px;
}
.tz-reserve-block__title {
  font-weight: 700;
  font-size: 15px;
  color: #212529;
  margin-bottom: 12px;
}
.tz-show-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid #f4f4f4;
}
.tz-show-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.tz-show-row__when {
  font-size: 13px;
  color: #616161;
}
.tz-show-row__when .strong {
  color: #212529;
}
.tz-show-row__btn {
  background: #219f45;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 0 24px;
  height: 40px;
  border-radius: 3px;
  align-self: flex-start;
  transition: filter 0.2s;
}
.tz-show-row__btn:hover {
  filter: brightness(0.95);
}

@media (min-width: 768px) {
  .tz-event-detail {
    padding: 25px 0;
  }
  .tz-event-detail__title {
    font-size: 20px;
  }
  .tz-show-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ---------- Empty state ---------- */
.tz-empty {
  background: #fff;
  border-radius: 6px;
  padding: 40px;
  text-align: center;
  color: #616161;
}

/* ---------- Utility ---------- */
.is-hidden {
  display: none !important;
}
.tz-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ---------- Home page overrides ---------- */
body.tz-home {
  background: #0a0604;
}
body.tz-home .tz-header {
  position: absolute;
  top: 0;
  inset-inline: 0;
  background: transparent;
  z-index: 10;
  height: 60px;
}
body.tz-home .tz-header__logo {
  /* background: #219f45; */
  padding: 6px 12px;
  border-radius: 3px;
}
body.tz-home .tz-header__logo img {
  /* height: 22px; */
}
body.tz-home .tz-header__hamburger {
  display: flex;
}
body.tz-home .tz-header__link {
  background: transparent;
  color: #fff;
}
body.tz-home .tz-header__link:hover {
  background: rgba(255, 255, 255, 0.1);
}
body.tz-home .tz-hero {
  flex: 1;
  min-height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.7)),
    url('../images/LL/home-bg.70bc157e537190448e7c.jpg');
}
body.tz-home .tz-hero__inner {
  padding-top: 90px;
  padding-bottom: 60px;
}

@media (min-width: 768px) {
  body.tz-home .tz-header {
    height: 65px;
    background: transparent;
  }
  body.tz-home .tz-header__logo {
    padding: 6px 14px;
  }
  body.tz-home .tz-header__logo img {
    height: 26px;
  }
  body.tz-home .tz-header__link {
    background: transparent;
    height: 45px;
    padding: 0 14px;
    color: #fff;
  }
  body.tz-home .tz-header__link:hover {
    background: rgba(255, 255, 255, 0.1);
  }
}

/* Side nav (home only) — vertical strip on right edge */
.tz-side-nav {
  display: none;
}
.tz-side-nav__bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.tz-side-nav__bars span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
}
.tz-side-nav__bars span:last-child {
  width: 14px;
}
.tz-side-nav__social {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tz-side-nav__social a {
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  transition: color 0.2s, transform 0.2s;
}
.tz-side-nav__social a:hover {
  color: #fff;
  transform: scale(1.1);
}

@media (min-width: 768px) {
  .tz-side-nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50px;
    padding: 22px 0 28px;
    z-index: 20;
  }
  .tz-side-nav__social svg {
    width: 16px;
    height: 16px;
  }
  /* On home + desktop, the side-nav owns the hamburger; hide the header one */
  body.tz-home .tz-header__hamburger {
    display: none;
  }
  /* Reserve space on the right edge so header content doesn't sit under the strip */
  body.tz-home .tz-header__container {
    padding-right: 60px;
  }
  body.tz-home .tz-footer--minimal .tz-footer__inner {
    padding-right: 60px;
  }
}

/* Minimal footer (home only) */
body.tz-home {
  position: relative;
}
.tz-footer--minimal {
  background: transparent;
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 5;
  margin-top: 0;
}
.tz-footer--minimal .tz-footer__inner {
  padding: 14px 0 18px;
}
.tz-footer--minimal .tz-footer__copy {
  margin-top: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
}

/* =====================================================
   Logged-in user nav (white strip below header)
   ===================================================== */
.tz-user-nav {
  background: #fff;
  position: relative;
}
.tz-user-nav__top {
  position: relative;
  padding: 12px 0;
}
.tz-user-nav__top .tz-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.tz-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.tz-user-info__avatar {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #bebebe;
  background: #f0f0f0;
  flex-shrink: 0;
}
.tz-user-info__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tz-user-info__text {
  min-width: 0;
}
.tz-user-info__hello {
  font-size: 11px;
  color: #121212;
  font-weight: 700;
  margin-bottom: 2px;
}
.tz-user-info__name {
  font-weight: 700;
  font-size: 15px;
  color: #000;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  direction: ltr;
  text-align: right;
}
.tz-user-info__fanid {
  font-size: 12px;
  color: #616161;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.tz-user-info__fanid-num {
  letter-spacing: 1px;
  color: #212529;
}
.tz-user-nav__links {
  display: none;
}
.tz-user-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #f2f2f2;
  border: 1px solid #c2c2c2;
  position: relative;
  color: #c2c2c2;
  transition: all 0.2s;
}
.tz-user-cart.is-active {
  border-color: #219f45;
  color: #219f45;
}
.tz-user-cart__num {
  position: absolute;
  top: -10px;
  inset-inline-start: -10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ff4d4d;
  color: #fff;
  border: 2px solid #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tz-user-cart__num.is-hidden {
  display: none;
}
.tz-user-nav__bottom {
  background: #e9e9e9;
  padding: 10px 0;
  font-size: 12px;
  color: #666;
  overflow: hidden;
}
.tz-marquee {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}
.tz-marquee__track {
  display: inline-block;
  padding-inline-start: 100%;
  animation: tz-marquee 80s linear infinite;
}
.tz-marquee__track:hover {
  animation-play-state: paused;
}
@keyframes tz-marquee {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

/* Desktop: show user-links inline */
@media (min-width: 992px) {
  .tz-user-nav__links {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-inline-start: auto;
    flex-wrap: wrap;
  }
  .tz-user-nav__links a {
    color: #7e7e7e;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.15s;
  }
  .tz-user-nav__links a:hover,
  .tz-user-nav__links a.is-active {
    color: #000;
  }
  .tz-user-nav__links a svg {
    width: 18px;
    height: 18px;
  }
  .tz-user-info__avatar {
    width: 90px;
    height: 90px;
    transform: translateY(20px);
  }
  .tz-user-info__name {
    font-size: 18px;
  }
}

/* Mobile: fixed bottom nav (hidden by default; shown only below 992px) */
.tz-user-nav__links--mobile {
  display: none;
}
@media (max-width: 991px) {
  .tz-user-nav__links--mobile {
    display: flex;
    position: fixed;
    bottom: 0;
    inset-inline: 0;
    background: #fff;
    z-index: 60;
    padding: 8px 0 6px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12);
  }
  .tz-user-nav__links--mobile a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #7e7e7e;
    font-size: 11px;
    padding: 4px 2px;
  }
  .tz-user-nav__links--mobile a svg {
    width: 22px;
    height: 22px;
  }
  .tz-user-nav__links--mobile a.is-active {
    color: #219f45;
  }
  body.tz-logged-in {
    padding-bottom: 72px;
  }
}

/* =====================================================
   Modal (login, payment, etc.)
   ===================================================== */
.tz-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 30px 15px;
  overflow-y: auto;
}
.tz-modal.is-open {
  display: flex;
}
.tz-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.tz-modal__dialog {
  background: #fff;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  padding: 25px;
  margin: auto;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}
.tz-modal__dialog--wide {
  max-width: 700px;
}
.tz-modal__title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 20px;
  color: #212529;
}
.tz-modal__close {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  color: #616161;
  font-size: 20px;
  line-height: 1;
  padding: 4px 8px;
}
.tz-modal__close:hover {
  color: #212529;
}
.tz-modal__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* Login modal form */
.tz-form-field {
  margin-bottom: 16px;
}
.tz-form-field label {
  display: block;
  font-size: 13px;
  color: #616161;
  margin-bottom: 6px;
}
.tz-form-field input[type="text"],
.tz-form-field input[type="tel"],
.tz-form-field input[type="email"],
.tz-form-field input[type="password"],
.tz-form-field input[type="number"],
.tz-form-field textarea,
.tz-form-field select {
  width: 100%;
  background: #f6f6f6;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  font-size: 14px;
  color: #212529;
  height: 44px;
  padding: 0 14px;
}
.tz-form-field textarea {
  height: auto;
  padding: 14px;
  resize: vertical;
  min-height: 100px;
}
.tz-form-field input:focus,
.tz-form-field select:focus,
.tz-form-field textarea:focus {
  outline: none;
  border-color: #219f45;
}
.tz-form-hint {
  font-size: 12px;
  color: #616161;
  margin-top: 6px;
}
.tz-form-error {
  font-size: 12px;
  color: #c34949;
  margin-top: 4px;
}

.tz-btn--grey {
  background: #cacaca;
  color: #fff;
  padding: 9px 22px;
  font-size: 14px;
  font-weight: 700;
}
.tz-btn--red {
  background: #c41e3a;
  color: #fff;
  padding: 9px 22px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 18px;
}
.tz-btn--block {
  display: flex;
  width: 100%;
}

/* =====================================================
   Cart page
   ===================================================== */
.tz-cart {
  padding: 20px 0 40px;
}
.tz-cart__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.tz-cart__section-title {
  font-size: 20px;
  font-weight: 700;
  color: #121212;
  margin: 0 0 16px;
}
.tz-cart__amount,
.tz-cart__details {
  background: #fff;
  border-radius: 8px;
  padding: 18px;
}
.tz-cart-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.tz-cart-table th,
.tz-cart-table td {
  padding: 10px 6px;
  text-align: right;
  color: #212529;
}
.tz-cart-table thead th {
  font-size: 12px;
  font-weight: 700;
  color: #616161;
  border-bottom: 1px solid #eee;
}
.tz-cart-table tbody tr {
  border-bottom: 1px solid #f4f4f4;
}
.tz-cart-table tbody tr:last-child {
  border-bottom: 0;
}
.tz-cart__total {
  margin-top: 16px;
  border-top: 1px solid #eee;
  padding-top: 14px;
}
.tz-cart__total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}
.tz-cart__pay {
  margin-top: 18px;
  background: #219f45;
  color: #fff;
  height: 48px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 4px;
  width: 100%;
  transition: filter 0.2s;
}
.tz-cart__pay:hover {
  filter: brightness(0.95);
}
.tz-alert {
  margin-top: 14px;
  background: #f9e1e1;
  border: 1px solid #f2c5c5;
  border-radius: 6px;
  padding: 14px 16px;
  color: #5a1c1c;
  font-size: 12.5px;
  line-height: 1.6;
}
.tz-alert__title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: #c41e3a;
  margin-bottom: 6px;
}
.tz-event-detail-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tz-event-detail-row__img {
  width: 100%;
  aspect-ratio: 800/300;
  overflow: hidden;
  border-radius: 6px;
  background: #222;
}
.tz-event-detail-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tz-event-detail-row__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tz-event-detail-row__title {
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #212529;
}
.tz-event-detail-row__delete {
  color: #c41e3a;
  font-size: 18px;
  padding: 4px;
}
.tz-event-detail-row__location {
  color: #616161;
  font-size: 13px;
}
.tz-event-detail-row__when {
  color: #616161;
  font-size: 13px;
}
.tz-cart__details-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid #eee;
}
.tz-cart__details-foot .edit {
  color: #219f45;
  font-size: 13px;
  font-weight: 700;
}
.tz-cart__subtotal {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tz-cart__subtotal-value {
  font-weight: 700;
  color: #212529;
}
.tz-dot-sm {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  vertical-align: middle;
  margin-inline-end: 6px;
}
@media (min-width: 992px) {
  .tz-cart__grid {
    grid-template-columns: 1fr 1fr;
  }
  .tz-event-detail-row {
    flex-direction: row;
  }
  .tz-event-detail-row__img {
    width: 50%;
    aspect-ratio: auto;
  }
  .tz-event-detail-row__meta {
    flex: 1;
  }
}

/* Payment modal: fawry option box */
.tz-pay-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 2px solid #d9d9d9;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 14px;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.15s, background 0.15s;
}
.tz-pay-option__check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #219f45;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.tz-pay-option__left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tz-pay-option__logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: #ffa00a;
  font-size: 18px;
}
.tz-pay-option__logo-dot {
  width: 22px;
  height: 22px;
  background: #ffa00a;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

/* =====================================================
   Seat selection page
   ===================================================== */
.tz-seats {
  padding: 20px 0 40px;
}
.tz-seats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.tz-seats__sidebar {
  background: #fff;
  border-radius: 8px;
  padding: 18px;
  height: fit-content;
}
.tz-seats__main {
  background: transparent;
}
.tz-seats__chart-card {
  background: #fff;
  border-radius: 8px;
  padding: 18px;
  margin-bottom: 14px;
}
.tz-seats__chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 8px;
}
.tz-seats__chart-title {
  font-weight: 700;
  font-size: 15px;
  color: #212529;
}
.tz-seats__chart-legend {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: #616161;
}
.tz-seats__chart-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tz-seats__chart-legend-mark {
  width: 16px;
  height: 16px;
  display: inline-block;
}
.tz-seats__chart-legend-mark--your {
  background: #2697d1;
  color: #fff;
  text-align: center;
  line-height: 16px;
  font-size: 9px;
}
.tz-seats__chart-legend-mark--unavail {
  background: #cacaca;
}
.tz-seats__toolbar {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.tz-seats__tool-btn {
  width: 32px;
  height: 32px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  color: #616161;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tz-seats__tool-btn:hover {
  background: #f4f4f4;
}
.tz-seats__map-placeholder {
  position: relative;
  width: 100%;
  height: 420px;
  background: linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%);
  border: 1px dashed #d9d9d9;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tz-seats__map-placeholder svg {
  max-width: 80%;
  max-height: 90%;
  height: auto;
}
.tz-seats__map-note {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  color: #616161;
}
.tz-seats__free {
  background: #fff;
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.tz-seats__free-label {
  flex: 1;
  font-size: 14px;
  color: #212529;
}
.tz-seats__free-count {
  background: #cacaca;
  color: #fff;
  min-width: 36px;
  padding: 4px 8px;
  text-align: center;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
}
.tz-seats__free-price {
  font-size: 13px;
  color: #212529;
  font-weight: 700;
  min-width: 80px;
  text-align: left;
}
.tz-seats__delete-bar {
  background: #cacaca;
  color: #fff;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  margin: 14px 0;
}
.tz-seat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-inline-start: 6px solid var(--seat-color, #219f45);
  padding: 10px 14px;
  margin-bottom: 10px;
  border-radius: 4px;
}
.tz-seat-row__check {
  width: 18px;
  height: 18px;
  border: 1.5px solid #d9d9d9;
  border-radius: 2px;
  flex-shrink: 0;
}
.tz-seat-row__cat {
  font-weight: 700;
  font-size: 14px;
  color: #212529;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tz-seat-row__seat {
  font-size: 13px;
  color: #212529;
}
.tz-seat-row__price {
  font-weight: 700;
  font-size: 14px;
  color: #212529;
  min-width: 100px;
  text-align: left;
}
.tz-seat-row__delete {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: #f6f6f6;
  color: #707070;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}
.tz-seat-row__delete:hover {
  background: #fbe8eb;
  color: #c41e3a;
}
.tz-seat-row__delete svg {
  display: block;
  width: 16px;
  height: 16px;
}
.tz-seats__total {
  background: #cacaca;
  border-radius: 6px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  flex-wrap: wrap;
}
.tz-seats__total-label {
  font-weight: 700;
  color: #212529;
}
.tz-seats__total-count {
  font-weight: 700;
  color: #212529;
}
.tz-seats__total-amount {
  font-weight: 700;
  color: #212529;
  margin-inline-start: auto;
}
.tz-seats__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.tz-seats__back {
  color: #219f45;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tz-seats__continue {
  background: #219f45;
  color: #fff;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
}
.tz-seats__sidebar-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #212529;
}
.tz-seats__sidebar-desc {
  font-size: 13px;
  color: #707070;
  line-height: 1.8;
  margin-bottom: 14px;
}
.tz-seats__sidebar-meta {
  font-size: 13px;
  color: #707070;
  margin-bottom: 4px;
}
.tz-seats__sidebar-value {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

@media (min-width: 992px) {
  .tz-seats__grid {
    grid-template-columns: 360px 1fr;
  }
}

/* =====================================================
   Profile / Tickets pages
   ===================================================== */
.tz-section-card {
  background: #fff;
  border-radius: 8px;
  padding: 22px;
  margin-bottom: 16px;
}
.tz-section-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.tz-section-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #212529;
  margin: 0;
}
.tz-section-card__edit {
  background: #219f45;
  color: #fff;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
}
.tz-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.tz-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 768px) {
  .tz-grid-2 { grid-template-columns: 1fr 1fr; }
  .tz-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}
.tz-readonly-field label {
  display: block;
  font-size: 12px;
  color: #616161;
  margin-bottom: 6px;
}
.tz-readonly-field .value {
  background: #f0f0f0;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  color: #212529;
  min-height: 42px;
  display: flex;
  align-items: center;
}
.tz-profile-status {
  text-align: center;
}
.tz-profile-status__logo {
  /* background: #219f45; */
  /* color: #fff; */
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 16px;
}
.tz-profile-status__title {
  font-size: 14px;
  color: #c41e3a;
  font-weight: 700;
  margin-bottom: 4px;
}
.tz-profile-status__sub {
  font-size: 12px;
  color: #c41e3a;
  margin-bottom: 14px;
}
.tz-profile-status__lock {
  margin: 20px auto;
  color: #c41e3a;
}
.tz-profile-status__desc {
  font-size: 12px;
  color: #616161;
  line-height: 1.7;
  margin-bottom: 18px;
}
.tz-profile-status__btn {
  background: #219f45;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 4px;
  display: inline-block;
}

/* Section accordion (tickets page, FAQ) */
.tz-section-accordion {
  background: #fff;
  border-radius: 6px;
  margin-bottom: 14px;
  overflow: hidden;
}
.tz-section-accordion__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #219f45;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
.tz-section-accordion__chevron {
  transition: transform 0.2s;
}
.tz-section-accordion.is-open .tz-section-accordion__chevron {
  transform: rotate(90deg);
}
.tz-section-accordion__body {
  padding: 16px 20px;
  display: none;
}
.tz-section-accordion.is-open .tz-section-accordion__body {
  display: block;
}
.tz-empty-state {
  text-align: center;
  padding: 30px 10px;
  color: #c2c2c2;
  font-size: 13px;
}
.tz-empty-state .ic {
  display: block;
  margin: 0 auto 10px;
  width: 40px;
  height: 40px;
  border: 1.5px solid #c2c2c2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #c2c2c2;
}

/* =====================================================
   Generic data tables (stadium, stores)
   ===================================================== */
.tz-page-title-center {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #212529;
  margin: 18px 0;
}
.tz-data-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}
.tz-data-card__head {
  background: #219f45;
  color: #fff;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
}
.tz-data-card__body {
  display: none;
}
.tz-data-card.is-open .tz-data-card__body {
  display: block;
}
.tz-data-card.is-open .tz-data-card__chevron {
  transform: rotate(90deg);
}
.tz-data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.tz-data-table th {
  text-align: right;
  font-weight: 700;
  background: #f7f7f7;
  color: #616161;
  padding: 12px 14px;
  border-bottom: 1px solid #eee;
}
.tz-data-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #f4f4f4;
  color: #212529;
}
.tz-data-table tr:last-child td {
  border-bottom: 0;
}
.tz-data-table .map-icon {
  width: 28px;
  height: 28px;
  background: #b22222;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
}

/* =====================================================
   FAQ page
   ===================================================== */
.tz-faq__title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #212529;
  margin: 22px 0 28px;
}
.tz-faq__section {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 24px;
  overflow: hidden;
}
.tz-faq__section-title {
  background: #219f45;
  color: #fff;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 700;
}
.tz-faq__list {
  padding: 8px 0;
}
.tz-faq__item {
  border-bottom: 1px solid #f0f0f0;
}
.tz-faq__item:last-child {
  border-bottom: 0;
}
.tz-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 22px;
  color: #212529;
  font-size: 14px;
  font-weight: 600;
  text-align: right;
  cursor: pointer;
}
.tz-faq__q:hover {
  color: #219f45;
}
.tz-faq__q-chevron {
  transition: transform 0.2s;
  color: #999;
}
.tz-faq__item.is-open .tz-faq__q-chevron {
  transform: rotate(90deg);
  color: #219f45;
}
.tz-faq__a {
  display: none;
  padding: 0 22px 14px;
  color: #707070;
  font-size: 13px;
  line-height: 1.8;
}
.tz-faq__item.is-open .tz-faq__a {
  display: block;
}
.tz-faq__footer {
  text-align: center;
  padding: 22px 0;
  font-size: 13px;
  color: #707070;
}
.tz-faq__footer strong {
  color: #219f45;
}

/* =====================================================
   About page
   ===================================================== */
.tz-about {
  padding: 30px 0;
}
.tz-about__title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 22px;
}
.tz-about__lead {
  font-size: 14px;
  line-height: 2;
  color: #212529;
  margin-bottom: 20px;
}
.tz-about__heading {
  font-size: 16px;
  font-weight: 700;
  color: #212529;
  margin: 26px 0 10px;
}
.tz-about__list {
  list-style: disc inside;
  padding: 0 6px;
}
.tz-about__list li {
  list-style: disc inside;
  margin-bottom: 8px;
  font-size: 14px;
  color: #212529;
}

/* =====================================================
   Contact page
   ===================================================== */
.tz-contact {
  padding: 30px 0;
}
.tz-contact__inner {
  background: #f4f4f4;
  border-radius: 6px;
  padding: 28px;
  max-width: 540px;
  margin: 0 auto;
}
.tz-contact__title {
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 8px;
}
.tz-contact__sub {
  text-align: center;
  font-size: 13px;
  color: #707070;
  line-height: 1.8;
  margin-bottom: 14px;
}
.tz-contact__phone {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #219f45;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.tz-contact__phone-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #219f45;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tz-contact__hint {
  text-align: center;
  font-size: 12px;
  color: #707070;
  margin-bottom: 18px;
}
.tz-contact__submit {
  background: #cacaca;
  color: #fff;
  height: 44px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  display: block;
  margin: 12px auto 0;
  padding: 0 36px;
}

/* =====================================================
   Misc
   ===================================================== */
.tz-page-hero-banner {
  background: #eee;
  padding: 16px 0;
  font-size: 12px;
  color: #707070;
  text-align: center;
}

/* =====================================================
   Payment modal: extras (radio, disabled state, brand logos)
   ===================================================== */
.tz-pay-option__radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #cacaca;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.15s, background 0.15s;
}
/* Selected state — applied to BOTH the option border and the radio dot */
.tz-pay-option.is-selected {
  border-color: #219f45;
}
.tz-pay-option.is-selected .tz-pay-option__radio {
  border-color: #219f45;
  background: #219f45;
}
.tz-pay-option.is-selected .tz-pay-option__radio::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}
.tz-pay-option.is-selectable:hover {
  border-color: #219f45;
}

/* Disabled (under maintenance) */
.tz-pay-option.is-disabled {
  border-color: #e1e1e1;
  background: #f6f6f6;
  color: #9a9a9a;
  cursor: not-allowed;
  opacity: 0.9;
}
.tz-pay-option.is-disabled .tz-pay-option__radio {
  border-color: #cacaca;
  background: #ececec;
}
.tz-pay-option.is-disabled .tz-pay-option__logo-img img {
  filter: grayscale(0.85);
  opacity: 0.75;
}
.tz-pay-option__badge {
  display: inline-block;
  background: #c41e3a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 10px;
  padding: 2px 10px;
  margin-inline-start: 8px;
  vertical-align: middle;
}

/* Logo images inside the payment options */
.tz-pay-option__logo-img img {
  display: block;
  height: 34px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
}
.tz-pay-option__brands {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.tz-pay-brand-img {
  display: block;
  height: 24px;
  width: auto;
  max-width: 60px;
  object-fit: contain;
}
.tz-pay-brand-img--visa {
  height: 18px;
  max-width: 56px;
}
.tz-pay-brand-img--mc {
  height: 30px;
  max-width: 44px;
}
.tz-pay-brand-img--meeza {
  height: 28px;
  max-width: 64px;
}
.tz-pay-brands-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  align-items: center;
}
.tz-pay-brands-row .tz-pay-brand-img {
  height: 28px;
}

/* Submit button disabled state inside payment modal */
.tz-btn[disabled] {
  background: #cacaca !important;
  color: #fff;
  cursor: not-allowed;
  opacity: 0.85;
}

/* Inline maintenance alert */
.tz-pay-maintenance {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff4e5;
  border: 1px solid #ffd9a8;
  color: #8a4b00;
  border-radius: 6px;
  padding: 10px 14px;
  margin: -6px 0 14px;
  font-size: 13px;
  line-height: 1.5;
  animation: tz-pay-shake 0.35s ease-in-out;
}
@keyframes tz-pay-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

@media (max-width: 520px) {
  .tz-pay-option {
    flex-wrap: wrap;
  }
  .tz-pay-option__brands {
    gap: 6px;
  }
}

/* =====================================================
   Checkout page (card payment form)
   ===================================================== */
.tz-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 14px;
}
@media (min-width: 600px) {
  .tz-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.tz-form-field input[readonly] {
  background: #efefef;
  color: #616161;
  cursor: not-allowed;
}
.tz-divider {
  border: 0;
  border-top: 1px solid #eee;
  margin: 14px 0 18px;
}
.tz-checkout-form__subtitle {
  font-size: 15px;
  font-weight: 700;
  color: #212529;
  margin: 0 0 14px;
}
.tz-input-wrap {
  position: relative;
}
.tz-input-wrap input {
  padding-inline-end: 44px;
}
.tz-input-wrap__icon {
  position: absolute;
  inset-inline-end: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #9a9a9a;
  pointer-events: none;
  display: inline-flex;
}
.tz-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #616161;
  margin: 6px 0 18px;
  cursor: pointer;
}
.tz-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #219f45;
}
.tz-checkout-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.tz-checkout-actions .tz-btn {
  border-radius: 4px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tz-checkout-actions .tz-btn--grey {
  padding: 0 26px;
}
.tz-btn--block-lg {
  flex: 1;
  min-width: 200px;
  font-size: 15px;
  font-weight: 700;
}
.tz-checkout-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  color: #707070;
}

/* =====================================================
   OTP verification page
   ===================================================== */
.tz-otp {
  padding: 40px 0;
  display: flex;
  justify-content: center;
}
.tz-otp__card {
  background: #fff;
  border-radius: 8px;
  padding: 36px 28px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.tz-otp__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #e8f5ec;
  color: #219f45;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tz-otp__title {
  font-size: 22px;
  font-weight: 700;
  color: #212529;
  margin: 0 0 10px;
}
.tz-otp__subtitle {
  font-size: 14px;
  color: #616161;
  margin: 0 0 22px;
  line-height: 1.7;
}
.tz-otp__phone {
  font-weight: 700;
  color: #212529;
  display: inline-block;
}
.tz-otp__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tz-otp__boxes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.tz-otp__single {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.tz-otp__single-input {
  width: 100%;
  max-width: 260px;
  height: 60px;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 8px;
  background: #f6f6f6;
  border: 2px solid #d9d9d9;
  border-radius: 8px;
  color: #212529;
  padding: 0 14px;
  transition: border-color 0.15s, background 0.15s;
  font-family: 'Cairo', Arial, monospace;
}
.tz-otp__single-input:focus {
  outline: none;
  border-color: #219f45;
  background: #fff;
}
.tz-otp__single-input::placeholder {
  color: #c8c8c8;
  letter-spacing: 6px;
}
.tz-otp__single-hint {
  font-size: 12px;
  color: #94a3b8;
}
.tz-otp__box {
  width: 48px;
  height: 56px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  background: #f6f6f6;
  border: 2px solid #d9d9d9;
  border-radius: 8px;
  color: #212529;
  transition: border-color 0.15s, background 0.15s;
}
.tz-otp__box:focus {
  outline: none;
  border-color: #219f45;
  background: #fff;
}
.tz-otp__box.is-filled {
  border-color: #219f45;
  background: #fff;
}
.tz-otp__error {
  color: #c41e3a;
  font-size: 13px;
  margin: -4px 0 0;
}
.tz-otp__submit {
  height: 48px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  margin-top: 4px;
}
.tz-otp__resend {
  font-size: 13px;
  color: #616161;
}
.tz-otp__resend-btn {
  color: #219f45;
  font-weight: 700;
  background: transparent;
  padding: 0 4px;
}
.tz-otp__resend-btn:disabled {
  color: #9a9a9a;
  cursor: not-allowed;
}
.tz-otp__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #616161;
  font-size: 13px;
  margin-top: 4px;
}
.tz-otp__back:hover {
  color: #219f45;
}
@media (max-width: 420px) {
  .tz-otp__box {
    width: 40px;
    height: 50px;
    font-size: 18px;
  }
}


.tz-seats__continue.is-disabled {
  pointer-events: none;
  opacity: 0.5;
}

/* =====================================================
   LTR overrides (English mode)
   ===================================================== */
.tz-dir-ltr {
  direction: ltr;
  text-align: left;
}
.tz-dir-ltr .tz-header__container,
.tz-dir-ltr .tz-footer__inner,
.tz-dir-ltr .tz-hero__inner {
  direction: ltr;
}
.tz-dir-ltr .tz-header__logo img,
.tz-dir-ltr .tz-header__hamburger {
  margin-left: 0;
}
.tz-dir-ltr .tz-drawer__panel { right: auto; left: 0; transform: translateX(-100%); }
.tz-dir-ltr .tz-drawer.is-open .tz-drawer__panel { transform: translateX(0); }
.tz-dir-ltr .tz-page__title-row { flex-direction: row-reverse; }
.tz-dir-ltr .tz-cart-table th,
.tz-dir-ltr .tz-cart-table td { text-align: left; }
.tz-dir-ltr .tz-cart-table th:last-child,
.tz-dir-ltr .tz-cart-table td:last-child { text-align: right; }
.tz-dir-ltr .tz-pay-option,
.tz-dir-ltr .tz-pay-maintenance,
.tz-dir-ltr .tz-otp__resend,
.tz-dir-ltr .tz-checkout-actions { text-align: left; }
.tz-dir-ltr .tz-modal__close { inset-inline-start: auto; inset-inline-end: 12px; }

/* Section card headers, accordions */
.tz-dir-ltr .tz-section-card__head,
.tz-dir-ltr .tz-data-card__head,
.tz-dir-ltr .tz-faq__q,
.tz-dir-ltr .tz-section-accordion__head { flex-direction: row-reverse; }

/* Force the brand chip text into LTR even inside Arabic pages (looks
   wrong otherwise) */
.tz-pay-brand,
.tz-pay-brand-img,
.tz-checkout-form input[name="card_number"],
.tz-checkout-form input[name="card_exp"],
.tz-checkout-form input[name="card_cvv"] {
  direction: ltr;
  text-align: left;
}

/* =====================================================
   Booking modal — category + quantity picker
   (mirrors tazkarti.com book-tickets popup)
   ===================================================== */
.tz-book-modal__dialog {
  max-width: 560px;
  padding: 0;
  overflow: hidden;
}
.tz-book-modal__close {
  z-index: 2;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.tz-book-modal__banner {
  width: 100%;
  max-height: 220px;
  overflow: hidden;
  background: #000;
}
.tz-book-modal__banner img {
  width: 100%;
  height: auto;
  display: block;
}
.tz-book-modal__body {
  padding: 22px 26px 16px;
}
.tz-book-modal__title {
  font-size: 18px;
  font-weight: 700;
  color: #212529;
  margin: 0 0 16px;
}
.tz-book-modal__meta {
  margin-bottom: 12px;
}
.tz-book-modal__meta-label {
  font-size: 12px;
  color: #707070;
  margin-bottom: 4px;
}
.tz-book-modal__meta-value {
  font-size: 14px;
  font-weight: 700;
  color: #212529;
  line-height: 1.6;
}
.tz-book-modal__desc {
  font-size: 13px;
  color: #616161;
  line-height: 1.7;
  margin: 14px 0 14px;
}
.tz-book-modal__note {
  font-size: 12.5px;
  color: #707070;
  text-align: center;
  padding: 10px 0 14px;
  border-top: 1px solid #eee;
  margin-top: 4px;
}
.tz-book-modal__rows {
  border-top: 1px solid #eee;
}
.tz-book-row {
  display: grid;
  grid-template-columns: 1fr auto 90px;
  gap: 14px;
  align-items: center;
  padding: 14px 4px;
  border-bottom: 1px solid #eee;
}
.tz-book-row:last-child {
  border-bottom: 0;
}
.tz-book-row__name {
  font-size: 14px;
  font-weight: 700;
  color: #212529;
}
.tz-book-row__price {
  font-size: 14px;
  color: #212529;
  text-align: center;
  white-space: nowrap;
}
.tz-book-row__qty {
  display: flex;
  justify-content: flex-end;
}
.tz-book-row__qty select {
  width: 80px;
  height: 36px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background: #fff;
  padding: 0 10px;
  font-size: 14px;
  color: #212529;
  cursor: pointer;
}
.tz-book-row__qty select:focus {
  outline: none;
  border-color: #219f45;
}
.tz-book-row--total {
  background: transparent;
  padding-top: 16px;
  padding-bottom: 4px;
  border-top: 1px solid #eee;
}
.tz-book-row--total .tz-book-row__price {
  font-weight: 700;
}
.tz-book-row__count {
  font-size: 14px;
  font-weight: 700;
  color: #212529;
  justify-content: flex-end;
  padding-inline-end: 10px;
}
.tz-book-modal__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 26px 22px;
  border-top: 1px solid #eee;
}
.tz-book-modal__continue {
  flex: 1;
  background: #219f45;
  color: #fff;
  border: 0;
  border-radius: 4px;
  height: 46px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tz-book-modal__continue:hover:not(:disabled) {
  background: #1c8b3b;
}
.tz-book-modal__continue:disabled {
  background: #b9d9c2;
  cursor: not-allowed;
}
.tz-book-modal__cancel {
  background: transparent;
  border: 0;
  color: #707070;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
}
.tz-book-modal__cancel:hover {
  color: #212529;
}
.tz-dir-ltr .tz-book-modal__cancel svg {
  transform: scaleX(-1);
}

@media (max-width: 540px) {
  .tz-book-modal__body { padding: 18px 16px 12px; }
  .tz-book-modal__footer { padding: 12px 16px 18px; }
  .tz-book-row { grid-template-columns: 1fr auto 80px; gap: 10px; }
  .tz-book-row__qty select { width: 70px; }
}

