/* ============================================================
   BOOK@ editorial skin — cream / ink / purple accent
   Loaded after style.css + rtl-style.css; overrides components.
   Remove the <link> in partials/styles.blade.php to revert.
   ============================================================ */

/* Thmanyah Sans — Arabic typeface (applied only on RTL pages) */
@font-face {
  font-family: 'Thmanyah Sans';
  src: url('../fonts/thmanyah/thmanyahsans-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Thmanyah Sans';
  src: url('../fonts/thmanyah/thmanyahsans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Thmanyah Sans';
  src: url('../fonts/thmanyah/thmanyahsans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Thmanyah Sans';
  src: url('../fonts/thmanyah/thmanyahsans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Thmanyah Sans';
  src: url('../fonts/thmanyah/thmanyahsans-Black.woff2') format('woff2');
  font-weight: 800 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #16130f;
  --cream: #f6f1ea;
  --cream-deep: #efe8dc;
  --line: rgba(22, 19, 15, 0.14);
  --line-strong: rgba(22, 19, 15, 0.85);
  --accent: var(--primary-color, #8c288e);
  --radius-card: 18px;
  --radius-pill: 999px;
}

/* ---------- base ---------- */

body {
  background-color: var(--cream);
  font-size: 16px;
}

::selection {
  background: var(--accent);
  color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.02em;
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] h5,
[dir="rtl"] h6 {
  letter-spacing: 0;
}

.bg-lighter {
  background-color: var(--cream-deep) !important;
}

/* ---------- splash / preloader ---------- */

.preloader {
  background-color: var(--cream) !important;
  background-image: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.preloader-logo {
  max-height: 52px;
  width: auto;
  animation: bookat-splash-pulse 1.4s ease-in-out infinite;
}

.preloader-bar {
  width: 160px;
  height: 3px;
  border-radius: var(--radius-pill);
  background: var(--line);
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: var(--radius-pill);
  background: var(--accent);
  animation: bookat-splash-slide 1.1s ease-in-out infinite;
}

@keyframes bookat-splash-pulse {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.6; transform: translateY(-4px); }
}

@keyframes bookat-splash-slide {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

[dir="rtl"] .preloader-bar span {
  animation-direction: reverse;
}

/* AJAX request loader (cart/checkout) — replace gif with css spinner */
.request-loader img {
  display: none;
}

.request-spinner {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  margin: -23px 0 0 -23px;
  border: 3px solid rgba(246, 241, 234, 0.35);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: bookat-spin 0.8s linear infinite;
}

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

/* ---------- buttons ---------- */

.theme-btn,
a.theme-btn {
  background: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-pill);
  color: #fff;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: 0.25s;
}

[dir="rtl"] .theme-btn,
[dir="rtl"] a.theme-btn {
  letter-spacing: 0;
}

.theme-btn:hover,
a.theme-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.menu-btn,
button.menu-btn,
a.menu-btn {
  background: transparent;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-pill);
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 20px;
  transition: 0.25s;
}

.menu-btn:hover,
button.menu-btn:hover,
a.menu-btn:hover {
  background: var(--ink);
  color: #fff;
}

/* beat menu.css specificity: solid ink for the first account button,
   outlined ink for the second */
.menu-right .menu-btn {
  background: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-pill);
  color: #fff;
  font-weight: 600;
}

.menu-right .menu-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.menu-right .dropdown:last-child .menu-btn {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}

.menu-right .dropdown:last-child .menu-btn:hover {
  background: var(--ink);
  color: #fff;
}

.dropdown-menu {
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(22, 19, 15, 0.12);
}

.dropdown-item:active,
.dropdown-item:hover {
  background: var(--cream);
  color: var(--ink);
}

.read-more {
  color: var(--ink);
  font-weight: 600;
}

.read-more:after {
  background: var(--accent);
}

.scroll-top {
  background: var(--ink);
  border-radius: 50%;
  color: #fff;
}

.scroll-top:hover {
  background: var(--accent);
}

/* ---------- nav layout: links next to the logo, account on the right ---------- */
@media (min-width: 1200px) {
  .main-header .header-inner {
    justify-content: flex-start;
  }
  .main-header .nav-outer {
    margin-inline-start: 38px;
    flex: 1 1 auto;
  }
  .main-menu .navbar-collapse {
    display: flex !important;
    align-items: center;
    width: 100%;
  }
  .main-menu .navigation {
    float: none;
  }
  .menu-right {
    margin-inline-start: auto !important;
  }
}

/* account / sign-in dropdown shows when toggled */
.main-header .dropdown-menu.show {
  display: block;
}

/* ---------- personalize panel (toggled by the globe icon) ---------- */

.personalize-panel {
  display: none;
  background: #fff;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 30px rgba(22, 19, 15, 0.07);
}

.main-header.personalize-open .personalize-panel {
  display: block;
  animation: personalizeIn 0.25s ease;
}

@keyframes personalizeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}

.personalize-panel .container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 16px;
  padding-bottom: 16px;
}

.utility-tagline {
  color: var(--accent);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
}

.utility-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-inline-start: auto;
  flex-wrap: wrap;
}

.u-field {
  display: flex;
  align-items: center;
  gap: 9px;
}

.u-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--base-color);
}

/* custom dropdown */
.custom-dd {
  position: relative;
}

.custom-dd .dd-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 96px;
  background: var(--cream);
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

.custom-dd .dd-toggle:hover,
.custom-dd.open .dd-toggle {
  box-shadow: 0 0 0 2px var(--accent);
}

.dd-city .dd-toggle {
  min-width: 150px;
}

.custom-dd .dd-toggle i {
  font-size: 11px;
  transition: transform 0.25s;
}

.custom-dd.open .dd-toggle i {
  transform: rotate(180deg);
}

.custom-dd .dd-menu {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-start: 0;
  min-width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: 0.2s;
  box-shadow: 0 18px 40px rgba(22, 19, 15, 0.16);
}

.dd-city .dd-menu {
  width: 280px;
}

.custom-dd.open .dd-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dd-search {
  position: relative;
  margin-bottom: 8px;
}

.dd-search input {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 10px 40px 10px 16px;
  font-size: 14px;
  color: var(--ink);
  outline: none;
}

.dd-search input:focus {
  border-color: var(--accent);
}

[dir="rtl"] .dd-search input {
  padding: 10px 16px 10px 40px;
}

.dd-search i {
  position: absolute;
  top: 50%;
  inset-inline-end: 14px;
  transform: translateY(-50%);
  color: var(--ink);
  font-size: 13px;
}

.dd-options {
  max-height: 240px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}

.dd-options::-webkit-scrollbar {
  width: 6px;
}

.dd-options::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 999px;
}

.dd-option {
  display: block;
  width: 100%;
  text-align: start;
  background: transparent;
  border: none;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.15s;
}

.dd-option:hover {
  background: var(--cream-deep);
  color: var(--ink);
}

.dd-option.is-selected {
  background: var(--accent);
  color: #fff;
}

.u-save {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  border: 1.5px solid var(--accent);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 9px 24px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}

.u-save:hover {
  background: #a032a2;
  border-color: #a032a2;
  color: #fff;
}

.u-save.is-saving {
  opacity: 0.6;
  pointer-events: none;
}

@media (max-width: 991px) {
  .utility-tagline {
    display: none;
  }
  .utility-controls {
    margin-inline-start: 0;
    width: 100%;
    justify-content: space-between;
  }
}

/* ---------- header ---------- */

.main-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

/* nav icon buttons (search + personalize globe) */
.nav-search-btn,
.nav-globe-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
  margin-inline-end: 12px;
}

.nav-search-btn:hover,
.nav-globe-btn:hover {
  background: var(--ink);
  color: var(--cream);
}

.main-header.personalize-open .nav-globe-btn,
.main-header.search-open .nav-search-btn {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ---------- mobile-only globe (always visible in top bar) ---------- */

/* By default, mobile-only globe is hidden on desktop (also gated by .d-xl-none in markup). */
@media (min-width: 1200px) {
  .nav-globe-btn--mobile { display: none !important; }
}

/* On mobile, hide the desktop globe (the one inside .menu-right that lives in the hamburger drawer)
   and tighten the mobile globe so it sits cleanly next to the hamburger toggle. */
@media (max-width: 1199px) {
  .menu-right .nav-globe-btn { display: none !important; }

  .nav-globe-btn--mobile {
    width: 38px;
    height: 38px;
    margin-inline-end: 8px;
    border-color: var(--line);
    background: transparent;
    color: var(--ink);
  }

  /* Personalize panel on mobile: sit below header bar, full-width, scrollable if tall */
  .personalize-panel {
    background: var(--ink);
    color: var(--cream);
    border-bottom: 0;
    box-shadow: 0 16px 30px rgba(22, 19, 15, 0.18);
  }
  .personalize-panel .container {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    padding-top: 18px;
    padding-bottom: 22px;
  }
  .personalize-panel .utility-tagline {
    color: var(--cream);
    opacity: 0.85;
  }
  .personalize-panel .u-label {
    color: rgba(246, 241, 234, 0.75);
  }
  .utility-controls {
    margin-inline-start: 0;
    gap: 10px;
  }
  .u-field {
    justify-content: space-between;
    width: 100%;
  }
  .custom-dd { flex: 1; }
  .custom-dd .dd-toggle { width: 100%; }

  /* ---------- mobile hamburger drawer ---------- */
  /* Drawer + nav list backgrounds — match the brand instead of plain white */
  .main-menu .navbar-collapse {
    background: var(--cream) !important;
    box-shadow: 0 16px 30px rgba(22, 19, 15, 0.10) !important;
    border-top: 1px solid var(--line);
  }
  .main-menu .navigation {
    background: var(--cream) !important;
    padding: 8px 0 !important;
  }
  .main-menu .navigation > li {
    border-top: 1px solid var(--line) !important;
    padding: 0 !important;
  }
  .main-menu .navigation > li:last-child {
    border-bottom: 1px solid var(--line) !important;
  }
  .main-menu .navigation > li > a {
    padding: 14px 22px !important;
    color: var(--ink);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.4;
  }
  .main-menu .navigation > li > a:hover,
  .main-menu .navigation > li > a:focus,
  .main-menu .navigation > li.current > a {
    background: var(--cream-deep);
    color: var(--accent);
  }
  .main-menu .navigation li ul {
    background: var(--cream-deep) !important;
  }
  .main-menu .navigation li ul li a {
    color: var(--ink);
    font-weight: 500;
  }
  .main-menu .navigation li ul li a:hover {
    color: var(--accent);
  }
  .main-menu .navigation li.dropdown .dropdown-btn {
    background: transparent;
    color: var(--ink);
  }

  /* Mobile menu-right (the part that sits inside the drawer with sign-in / globe) */
  .menu-right {
    background: var(--cream-deep);
    padding: 14px 22px !important;
    margin: 0 !important;
    justify-content: flex-start !important;
    gap: 12px;
  }
  .menu-right .menu-btn,
  .menu-right .dropdown-toggle {
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--ink);
    background: transparent;
    color: var(--ink);
    padding: 8px 16px;
    font-weight: 700;
  }
  .menu-right .menu-btn:hover,
  .menu-right .dropdown-toggle:hover {
    background: var(--ink);
    color: var(--cream);
  }

  /* Mobile-login dropdown (the small "Sign In" button next to hamburger, inline-styled in blade) */
  .mobile-login-btn .menu-btn,
  .mobile-login-btn .dropdown-toggle {
    background: transparent !important;
    color: var(--ink) !important;
    border: 1.5px solid var(--ink) !important;
    border-radius: var(--radius-pill) !important;
    padding: 7px 14px !important;
    font-weight: 700 !important;
  }
  .mobile-login-btn .menu-btn:hover,
  .mobile-login-btn .dropdown-toggle:hover {
    background: var(--ink) !important;
    color: var(--cream) !important;
  }
  .mobile-login-btn .dropdown-menu {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 14px 30px -10px rgba(22, 19, 15, 0.18);
    padding: 8px;
  }
  .mobile-login-btn .dropdown-menu .dropdown-header {
    font-family: var(--heading-font);
    font-size: 11px;
    letter-spacing: 0.14em;
    color: rgba(22, 19, 15, 0.5);
    text-transform: uppercase;
    padding: 6px 12px;
  }
  .mobile-login-btn .dropdown-menu .dropdown-item {
    color: var(--ink);
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
  }
  .mobile-login-btn .dropdown-menu .dropdown-item:hover {
    background: var(--cream-deep);
    color: var(--accent);
  }
  .mobile-login-btn .dropdown-divider {
    border-color: var(--line);
    margin: 6px 4px;
  }

  /* Hamburger icon-bars: ink, not the muddy default */
  .main-menu .navbar-header .navbar-toggle .icon-bar {
    background: var(--ink) !important;
  }
}

.nav-search-panel {
  max-height: 0;
  overflow: hidden;
  background: var(--cream);
  border-top: 1px solid transparent;
  transition: max-height 0.3s ease, border-color 0.3s ease;
}

.main-header.search-open .nav-search-panel {
  max-height: 120px;
  border-top: 1px solid var(--line);
}

.nav-search-form {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
}

.nav-search-form i {
  color: var(--accent);
  font-size: 17px;
}

.nav-search-form input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 17px;
  color: var(--ink);
  outline: none;
}

.nav-search-form button {
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: var(--radius-pill);
  padding: 10px 26px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: 0.2s;
}

[dir="rtl"] .nav-search-form button {
  letter-spacing: 0;
}

.nav-search-form button:hover {
  background: var(--accent);
}

.main-header .header-upper,
.fixed-header .header-upper {
  background: var(--cream);
}

.fixed-header .header-upper {
  box-shadow: 0 1px 0 var(--line);
}

/* menu.css hardcodes Poppins (no Arabic glyphs) — use the page font stack */
.main-menu .navigation li a {
  font-family: var(--base-font);
}

.main-menu .navigation > li > a {
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
}

.main-menu .navigation > li > a:hover,
.main-menu .navigation > li.current > a {
  color: var(--accent);
}

.main-menu .navbar-collapse > ul {
  background: transparent;
}

.menu-right .form-control,
.menu-right select {
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--ink);
  font-weight: 600;
}

.menu-right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-inline-start: 40px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}

.lang-toggle:hover {
  color: var(--accent);
}

/* tighter header bar */
.main-header .header-upper.py-25 {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.main-header .logo img {
  max-height: 44px;
}

/* ---------- section titles ---------- */

.section-title h2 {
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  color: var(--ink) !important;
  font-weight: 800 !important;
}

[dir="rtl"] .section-title h2 {
  letter-spacing: 0;
}

.section-title span,
.section-title .sub-title {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
}

/* ---------- hero ---------- */

.hero-section,
.hero-section.lazy {
  background-image: none !important;
  background-color: var(--cream) !important;
  border-bottom: 1px solid var(--line);
}

.hero-section.overlay:before {
  display: none;
}

.hero-content h1 {
  color: var(--ink);
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.03;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  font-weight: 800;
}

[dir="rtl"] .hero-content h1 {
  letter-spacing: 0;
}

.hero-content p {
  color: var(--base-color);
  font-size: 18px;
}

/* editorial hero: left-aligned statement + single search pill */
.hero-editorial {
  padding-top: 70px !important;
  padding-bottom: 90px !important;
  min-height: 0 !important;
}

.hero-editorial .hero-content {
  margin: 0;
  max-width: 880px;
  text-align: start;
}

.hero-editorial .hero-content h1 {
  font-size: clamp(38px, 5.2vw, 68px);
}

.hero-editorial .hero-content p {
  margin-left: 0;
  margin-right: 0;
  max-width: 560px;
}

.hero-search {
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 560px;
  background: #fff;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 22px;
}

[dir="rtl"] .hero-search {
  padding: 6px 22px 6px 6px;
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  color: var(--ink);
}

.hero-search input::placeholder {
  color: rgba(22, 19, 15, 0.45);
}

.hero-search-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 12px 26px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s;
  white-space: nowrap;
}

[dir="rtl"] .hero-search-btn {
  letter-spacing: 0;
}

[dir="rtl"] .hero-search-btn i {
  transform: scaleX(-1);
}

.hero-search-btn:hover {
  background: var(--accent);
}

/* ---------- category tabs (event filter chips) ---------- */

.events-tabs {
  border-bottom: none;
  gap: 10px;
}

.events-tabs .nav-link {
  border: 1.5px solid var(--line) !important;
  border-radius: var(--radius-pill) !important;
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 20px;
  transition: 0.25s;
}

.events-tabs .nav-link:hover {
  border-color: var(--ink) !important;
}

.events-tabs .nav-link.active {
  background: var(--ink) !important;
  border-color: var(--ink) !important;
  color: var(--cream) !important;
}

.events-tabs-arrow {
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
}

.events-tabs-arrow:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ---------- event cards ---------- */

.event-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #fff;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.event-item:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 14px 34px rgba(22, 19, 15, 0.12);
}

.event-image {
  border-radius: 0;
}

.event-image img {
  border-radius: 0;
}

.event-content {
  box-shadow: none;
  padding: 18px 20px 22px;
}

/* turn the floating date/time chip into an inline row of pill tags */
.event-content .time-info {
  position: static;
  width: 100%;
  box-shadow: none;
  background: transparent;
  padding: 0;
  margin-bottom: 12px;
  justify-content: flex-start;
  gap: 8px;
}

.event-content .time-info li {
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  background: var(--cream);
  display: inline-flex;
  align-items: center;
}

.event-content .time-info i {
  color: var(--accent);
}

.event-content .organizer {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

[dir="rtl"] .event-content .organizer {
  letter-spacing: 0;
}

.event-content h5,
.event-content h5 a {
  font-weight: 800;
  color: var(--ink);
}

.event-content h5 a:hover {
  color: var(--accent);
}

.event-content .event-description {
  font-size: 14px;
  line-height: 1.6;
}

.event-content .price {
  color: var(--ink);
  font-weight: 800;
}

.event-item .wishlist-btn {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
}

.event-item .wishlist-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ---------- generic content sections ---------- */

.feature-section,
.testimonial-section,
.about-section {
  background-color: transparent;
}

.feature-item,
.testimonial-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: none;
}

/* swiper/slick pagination + arrows */
.swiper-pagination-bullet {
  background: var(--ink);
  opacity: 0.25;
}

.swiper-pagination-bullet-active {
  background: var(--accent);
  opacity: 1;
}

/* ---------- forms ---------- */

.form-control:focus {
  border-color: var(--ink);
  box-shadow: none;
}

input[type="checkbox"]:checked {
  accent-color: var(--accent);
}

/* ---------- page banner / breadcrumb (inner pages) ---------- */

.page-banner {
  background-image: none !important;
  background-color: var(--cream-deep) !important;
  padding-top: 48px !important;
  padding-bottom: 48px !important;
  border-bottom: 1px solid var(--line);
}

.page-banner.overlay:before {
  display: none;
}

.page-banner .page-title {
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: -0.025em;
  font-size: clamp(26px, 3.4vw, 44px);
  margin-bottom: 6px;
}

[dir="rtl"] .page-banner .page-title {
  letter-spacing: 0;
}

.page-banner .banner-inner {
  text-align: start;
}

.page-banner .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 13px;
  justify-content: flex-start;
}

.page-banner .breadcrumb a,
.page-banner .breadcrumb-item.active,
.page-banner .breadcrumb-item + .breadcrumb-item::before {
  color: var(--base-color);
}

.page-banner .breadcrumb a:hover {
  color: var(--accent);
}

/* ---------- event details ---------- */

.event-details-section {
  padding-top: 56px !important;
}

/* top header: drop the purple month/day box, big title, meta pills */
.event-top-date {
  display: none;
}

.event-details-content .title,
.event-details-top .title {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}

[dir="rtl"] .event-details-content .title {
  letter-spacing: 0;
}

.event-details-content .title .badge {
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-info {
  background: var(--accent) !important;
  color: #fff !important;
}

.badge-success {
  background: #1f9d57 !important;
  color: #fff !important;
}

.badge-danger {
  background: #b3402f !important;
  color: #fff !important;
}

.event-details-header ul {
  gap: 10px;
  margin-bottom: 0;
}

.event-details-header ul li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: var(--radius-pill);
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.event-details-header ul li:not(:last-child) {
  margin-inline-end: 0;
  padding-inline-end: 15px;
  border-inline-end: 1px solid var(--line);
}

.event-details-header ul li i {
  color: var(--accent);
  margin-inline-end: 0;
}

/* poster image */
.event-details-image {
  margin-top: 30px;
  max-width: 900px;
  margin-inline: auto;
}

.event-details-image .swiper,
.event-details-image .event-details-images {
  border-radius: var(--radius-card);
  overflow: hidden;
}

.event-details-image img {
  width: 100%;
  max-height: 600px;
  object-fit: contain;
  background: var(--cream-deep);
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
}

.event-details-image .buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--ink);
  padding: 9px 14px;
  transition: 0.2s;
}

.event-details-image .buttons a:hover {
  background: var(--ink);
  color: var(--cream);
}

/* body: description + map + policy */
.event-details-content-inner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 30px;
}

.event-info span:first-child a {
  display: inline-block;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-pill);
  padding: 6px 15px;
  font-size: 13px;
  font-weight: 600;
}

.event-info span:first-child a:hover {
  background: var(--accent);
  color: #fff;
}

.inner-title,
.event-details-content-inner h3 {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}

[dir="rtl"] .inner-title,
[dir="rtl"] .event-details-content-inner h3 {
  letter-spacing: 0;
}

.summernote-content {
  color: var(--base-color);
  line-height: 1.8;
}

/* force the brand font on description text (Thmanyah on Arabic, Inter on English) */
.summernote-content,
.summernote-content p,
.summernote-content span,
.summernote-content li,
.summernote-content div,
.summernote-content strong,
.summernote-content em,
.summernote-content a,
.summernote-content h1,
.summernote-content h2,
.summernote-content h3,
.summernote-content h4,
.summernote-content h5,
.summernote-content h6 {
  font-family: var(--base-font) !important;
}

.our-location iframe,
.map-h {
  border-radius: var(--radius-card);
  border: 1px solid var(--line) !important;
}

/* booking / sidebar card — remove the -210px overlap that broke the layout */
.event-details-information {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: none !important;
  padding: 26px;
  margin: 0 !important;
}

.sidebar-sticky {
  position: sticky;
  top: 100px;
}

.event-details-information .form-control,
.event-details-information select,
.event-details-information input {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
}

.event-details-information label {
  font-weight: 600;
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

[dir="rtl"] .event-details-information label {
  letter-spacing: 0;
}

.event-details-information b {
  color: var(--ink);
}

.event-details-information .price,
.event-details-content .price {
  color: var(--ink);
  font-weight: 800;
}

/* countdown: kill the purple conic progress ring, use flat clean boxes */
.syotimer-cell__value::after {
  display: none !important;
}

.syotimer__body {
  gap: 10px;
}

.event-details-information .syotimer-cell__value,
.count-down .syotimer-cell__value,
.popup-wrapper .syotimer-cell__value,
.syotimer-cell__value {
  aspect-ratio: auto !important;
  width: 100%;
  border: 1.5px solid var(--line) !important;
  border-radius: 12px !important;
  color: var(--ink) !important;
  background: var(--cream) !important;
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 22px !important;
  padding: 16px 4px !important;
  display: grid;
  place-items: center;
}

.event-details-information .syotimer-cell__unit,
.count-down .syotimer-cell__unit,
.syotimer-cell__unit {
  color: var(--base-color);
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
  text-transform: capitalize;
}

/* invitation card */
.invitation-only-card {
  background: var(--ink);
  border-radius: var(--radius-card);
  padding: 36px 26px;
  color: var(--cream);
}

.invitation-only-card i {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
  color: var(--accent);
}

.invitation-only-card h4 {
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 17px;
}

.invitation-only-card p {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 0;
  line-height: 1.6;
}

/* gallery slide arrows */
.event-details-slide-prev,
.event-details-slide-next {
  background: #fff !important;
  border: 1.5px solid var(--line-strong) !important;
  border-radius: 50% !important;
  color: var(--ink) !important;
}

.event-details-slide-prev:hover,
.event-details-slide-next:hover {
  background: var(--ink) !important;
  color: var(--cream) !important;
}

/* related events + organizer */
.releted-event-header,
.releted-event-header.mt-50 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 60px;
  margin-bottom: 28px;
}

.releted-event-header h3 {
  font-size: clamp(24px, 3vw, 34px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0;
}

[dir="rtl"] .releted-event-header h3 {
  letter-spacing: 0;
}

.related-event-buttons {
  display: flex;
  gap: 10px;
}

.slide-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s;
}

.slide-btn:hover {
  background: var(--ink);
  color: var(--cream);
}

[dir="rtl"] .slide-btn i {
  transform: scaleX(-1);
}

.event-details-section hr {
  border-color: var(--line);
  opacity: 1;
}

/* organizer block */
.event-details-content .author img {
  border: 1px solid var(--line);
}

.event-details-content .author a {
  color: var(--accent);
}

/* ---------- homepage v3 sections ---------- */

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

.see-all:hover {
  color: var(--accent);
}

[dir="rtl"] .see-all i {
  transform: scaleX(-1);
}

/* ---------- events horizontal scroller (native, default cursor) ---------- */

.events-scroller {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  padding-bottom: 18px;
  /* Firefox scrollbar */
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) var(--line);
}

/* WebKit scrollbar — slim, on-brand */
.events-scroller::-webkit-scrollbar {
  height: 6px;
}

.events-scroller::-webkit-scrollbar-track {
  background: var(--line);
  border-radius: var(--radius-pill);
}

.events-scroller::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: var(--radius-pill);
}

.event-col {
  flex: 0 0 auto;
  width: 80%;
  max-width: 320px;
  scroll-snap-align: start;
}

.event-col .event-item {
  height: 100%;
  margin-bottom: 0;
}

@media (min-width: 576px) {
  .event-col {
    width: calc((100% - 22px) / 2);
    max-width: none;
  }
}

@media (min-width: 992px) {
  .event-col {
    width: calc((100% - 2 * 22px) / 3);
  }
}

@media (min-width: 1200px) {
  .event-col {
    width: calc((100% - 3 * 22px) / 4);
  }
}

/* ---------- poster event card ---------- */

.event-card {
  display: block;
  height: 100%;
  margin-bottom: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  color: var(--ink);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

/* keep hover minimal: no lift, just image zoom + date pill */
.event-card:hover {
  transform: none;
  border-color: var(--line);
  box-shadow: 0 16px 40px rgba(22, 19, 15, 0.13);
}

.event-card .event-image {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.event-card .event-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.event-card:hover .event-image img {
  transform: scale(1.06);
}

.event-card .event-content {
  padding: 16px 18px 20px;
  box-shadow: none;
}

/* tag row + meta row */
.card-tags {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.tag-cat {
  background: var(--ink);
  color: var(--cream);
}

.tag-city {
  background: #f0e2bf;
  color: #7c611a;
  max-width: 48%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.tag-date {
  border: 1.5px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.tag-date i {
  color: var(--accent);
  transition: color 0.25s ease;
}

.event-card:hover .tag-date {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.event-card:hover .tag-date i {
  color: #fff;
}

.card-price {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  white-space: nowrap;
}

.card-divider {
  height: 1px;
  background: var(--line);
  margin: 0 -18px 16px;
}

.card-title {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-card:hover .card-title {
  color: var(--ink);
}

.card-loc {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: var(--base-color);
}

.card-loc i {
  color: var(--accent);
  font-size: 15px;
}

/* ---------- events listing page ---------- */

.listing-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.listing-search {
  margin: 0;
  flex: 1;
  max-width: 520px;
}

.listing-count {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--base-color);
  white-space: nowrap;
}

.listing-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.listing-chips .chip {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  transition: 0.2s;
}

.listing-chips .chip:hover {
  border-color: var(--ink);
}

.listing-chips .chip.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1199px) {
  .events-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 870px) {
  .events-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .events-grid { grid-template-columns: 1fr; }
  .listing-toolbar { flex-direction: column; align-items: stretch; }
  .listing-search { max-width: none; }
}

.listing-subhead {
  font-size: clamp(22px, 3vw, 32px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 56px 0 24px;
}

[dir="rtl"] .listing-subhead {
  letter-spacing: 0;
}

/* pagination */
.listing-pagination {
  margin-top: 48px;
}

.listing-pagination .pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: center;
}

.listing-pagination .page-item .page-link,
.listing-pagination .pagination li a,
.listing-pagination .pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  transition: 0.2s;
}

.listing-pagination .pagination li a:hover {
  border-color: var(--ink);
  background: var(--cream-deep);
}

.listing-pagination .pagination .active span,
.listing-pagination .pagination li.active span {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

.listing-pagination .pagination .disabled span {
  opacity: 0.4;
}

/* empty state */
.listing-empty {
  text-align: center;
  padding: 70px 20px;
}

.listing-empty i {
  font-size: 46px;
  color: var(--accent);
  margin-bottom: 18px;
}

.listing-empty h3 {
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

[dir="rtl"] .listing-empty h3 {
  letter-spacing: 0;
}

.listing-empty p {
  color: var(--base-color);
  margin-bottom: 22px;
}

/* ---------- organizers listing ---------- */

.org-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1199px) { .org-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 870px)  { .org-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .org-grid { grid-template-columns: 1fr; } }

.org-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 32px 22px 26px;
  color: var(--ink);
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}

.org-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 16px 40px rgba(22, 19, 15, 0.12);
  transform: translateY(-3px);
}

.org-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream-deep);
  margin-bottom: 16px;
}

.org-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.org-name {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 3px;
  color: var(--ink);
}

.org-username {
  font-size: 13px;
  color: var(--base-color);
  margin-bottom: 14px;
}

.org-events {
  display: inline-block;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
}

.org-view {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
}

[dir="rtl"] .org-view i { transform: scaleX(-1); }

.org-noresults {
  text-align: center;
  color: var(--base-color);
  font-size: 16px;
  padding: 50px 20px;
}

/* ---------- organizer profile (details) ---------- */

.page-banner .banner-author .author {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}

.page-banner .banner-author .author-img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--cream-deep);
}

.page-banner .author-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.page-banner .text-white {
  color: var(--ink) !important;
}

.page-banner .banner-author .author-info h3 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 2px;
  letter-spacing: -0.02em;
}

[dir="rtl"] .page-banner .banner-author .author-info h3 { letter-spacing: 0; }

.page-banner .author-info span {
  color: var(--base-color);
}

.page-banner .social-style-one {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.page-banner .social-style-one h5 {
  color: var(--ink);
  margin: 0 6px 0 0;
}

.page-banner .social-style-one a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: 0.2s;
}

.page-banner .social-style-one a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* hide the verbose category chip-wall on the profile */
.author-area .author-tabs {
  display: none;
}

.author-area .col-lg-8 > h3 {
  font-size: clamp(22px, 3vw, 30px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

[dir="rtl"] .author-area .col-lg-8 > h3 { letter-spacing: 0; }

/* organizer info sidebar widget */
.widget-author-details {
  background: #fff;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-card);
  padding: 24px;
}

.widget-author-details .author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.widget-author-details .author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--cream-deep);
}

.widget-author-details .author-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.widget-author-details .author-info h6 {
  font-weight: 800;
  margin-bottom: 2px;
}

.widget-author-details .toggle-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.widget-author-details .toggle-list li .first {
  color: var(--base-color);
  font-weight: 600;
}

.widget-author-details .toggle-list li .last {
  color: var(--ink);
  font-weight: 700;
}

/* ---------- scroll-reveal motion ---------- */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal.reveal-delay {
  transition-delay: 0.12s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.invite-pill {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  background: var(--ink);
  color: var(--cream);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
}

.event-image {
  position: relative;
}

.event-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.event-content .price-remain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  font-size: 13px;
}

.event-content .location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--base-color);
  min-width: 0;
}

.event-content .location i {
  color: var(--accent);
}

.statement-band {
  background: var(--ink);
  padding: 110px 0;
  text-align: center;
}

.statement-band h2 {
  color: var(--cream);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

[dir="rtl"] .statement-band h2 {
  letter-spacing: 0;
}

.statement-band p {
  color: rgba(246, 241, 234, 0.75);
  max-width: 540px;
  margin: 0 auto 34px;
  font-size: 17px;
}

.statement-band .statement-btn {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--ink);
}

.statement-band .statement-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.check-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
  padding: 9px 0;
}

.check-list li i {
  color: var(--accent);
  font-size: 14px;
}

.demo-card-wrap {
  display: flex;
  justify-content: center;
  padding: 30px 0;
}

.demo-card {
  width: 330px;
  transform: rotate(2.5deg);
  box-shadow: 14px 18px 0 rgba(22, 19, 15, 0.08);
}

.demo-card:hover {
  transform: rotate(0deg) translateY(-4px);
}

.demo-card-image {
  aspect-ratio: 4 / 3;
  background: repeating-linear-gradient(
    -45deg,
    var(--cream-deep),
    var(--cream-deep) 14px,
    var(--cream) 14px,
    var(--cream) 28px
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-card-image span {
  font-family: var(--heading-font);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  background: #fff;
}

[dir="rtl"] .demo-card-image span {
  letter-spacing: 0;
}

.demo-card .price {
  color: var(--accent);
}

.partners-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 700;
  color: var(--base-color);
  text-align: center;
  margin-bottom: 26px;
}

[dir="rtl"] .partners-kicker {
  letter-spacing: 0;
}

.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.partners-row img {
  max-height: 44px;
  max-width: 130px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 18px;
  height: 64px;
  width: auto;
}

/* ---------- inline-styled homepage sections ---------- */

.category-section-modern {
  background: var(--cream-deep) !important;
}

.partners-section-modern {
  background: var(--cream) !important;
}

.partners-section-modern h2 {
  text-transform: uppercase;
  color: var(--ink) !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em;
}

.partners-slider-wrapper {
  background: transparent !important;
}

/* ---------- footer ---------- */

.site-footer {
  background-color: var(--ink);
  color: rgba(246, 241, 234, 0.7);
  padding: 72px 0 26px;
  border-top: 1px solid var(--line);
}

.site-footer:after {
  display: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(246, 241, 234, 0.12);
}

/* Brand block */
.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo img {
  max-height: 42px;
  width: auto;
}

.footer-about {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(246, 241, 234, 0.62);
  max-width: 340px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 241, 234, 0.25);
  border-radius: 50%;
  color: var(--cream);
  font-size: 15px;
  transition: 0.25s;
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

/* Link columns */
.footer-col-title {
  color: var(--cream);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
}

[dir="rtl"] .footer-col-title {
  letter-spacing: 0;
  font-size: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.footer-col a {
  color: rgba(246, 241, 234, 0.7);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
}

/* Contact column */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(246, 241, 234, 0.7);
}

.footer-contact li i {
  color: var(--accent);
  font-size: 14px;
  margin-top: 4px;
  flex: none;
  width: 16px;
  text-align: center;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 26px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(246, 241, 234, 0.5);
  margin: 0;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-pay {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-pay i {
  color: rgba(246, 241, 234, 0.45);
  font-size: 13px;
  margin-inline-end: 2px;
}

.footer-pay span {
  font-size: 12px;
  color: rgba(246, 241, 234, 0.5);
  margin-inline-end: 6px;
}

.footer-pay img {
  height: 26px;
  background: #fff;
  padding: 4px 8px;
  border-radius: 6px;
}

.footer-top-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(246, 241, 234, 0.25);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.25s;
}

.footer-top-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575px) {
  .site-footer {
    padding-top: 52px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

/* ---------- cookie banner ---------- */

.cookie-consent {
  background-color: var(--ink);
  border-top: 1px solid rgba(246, 241, 234, 0.15);
}

span.cookie-consent__message {
  color: var(--cream);
}

button.cookie-consent__agree {
  background-color: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-pill);
  font-weight: 700;
  padding: 7px 20px;
  transition: 0.25s;
}

button.cookie-consent__agree:hover {
  background-color: var(--accent);
  color: #fff;
}

/* ============================================================
   Help Center (/help-center) — editorial restyle
   Rendered from resources/views/frontend/pages/help-center.blade.php
   ============================================================ */

.bk-help-hero {
  background-color: var(--cream-deep);
  border-bottom: 1px solid var(--line);
  padding: 64px 0 56px;
  text-align: center;
}

.bk-help-eyebrow {
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}

[dir="rtl"] .bk-help-eyebrow {
  letter-spacing: 0.04em;
}

.bk-help-title {
  font-family: var(--heading-font);
  color: var(--ink);
  font-weight: 800;
  font-size: clamp(30px, 4.2vw, 52px);
  letter-spacing: -0.025em;
  margin: 0 0 14px;
}

[dir="rtl"] .bk-help-title {
  letter-spacing: 0;
}

.bk-help-lede {
  max-width: 640px;
  margin: 0 auto 28px;
  color: rgba(22, 19, 15, 0.72);
  font-size: 17px;
  line-height: 1.6;
}

.bk-help-search {
  position: relative;
  max-width: 560px;
  margin: 0 auto 22px;
}

.bk-help-search-icon {
  position: absolute;
  top: 50%;
  inset-inline-start: 22px;
  transform: translateY(-50%);
  color: rgba(22, 19, 15, 0.45);
  font-size: 16px;
  pointer-events: none;
}

.bk-help-search input {
  width: 100%;
  height: 56px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  background: #fff;
  padding: 0 26px 0 56px;
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

[dir="rtl"] .bk-help-search input {
  padding: 0 56px 0 26px;
}

.bk-help-search input::placeholder {
  color: rgba(22, 19, 15, 0.42);
}

.bk-help-search input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(22, 19, 15, 0.08);
}

.bk-help-jump {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 14px;
  font-size: 13px;
  color: rgba(22, 19, 15, 0.55);
}

.bk-help-jump-label {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

[dir="rtl"] .bk-help-jump-label {
  letter-spacing: 0;
}

.bk-help-jump-link {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.bk-help-jump-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ---------- category tiles ---------- */

.bk-help-tiles {
  background-color: var(--cream);
  padding: 56px 0 24px;
}

.bk-help-tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.bk-help-tile {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 22px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-card);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.bk-help-tile:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
  box-shadow: 0 14px 30px -22px rgba(22, 19, 15, 0.35);
  color: var(--ink);
}

.bk-help-tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream-deep);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background-color 0.2s, color 0.2s;
}

.bk-help-tile:hover .bk-help-tile-icon {
  background: var(--accent);
  color: #fff;
}

.bk-help-tile-title {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
}

.bk-help-tile-desc {
  color: rgba(22, 19, 15, 0.65);
  font-size: 14px;
  line-height: 1.55;
}

/* ---------- FAQ list ---------- */

.bk-help-faq {
  background-color: var(--cream);
  padding: 40px 0 80px;
}

.bk-help-empty {
  text-align: center;
  color: rgba(22, 19, 15, 0.6);
  font-size: 15px;
  margin: 32px 0;
}

.bk-help-cat {
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 100px;
}

.bk-help-cat:first-of-type {
  border-top: 0;
  margin-top: 0;
  padding-top: 16px;
}

.bk-help-cat-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.bk-help-cat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.bk-help-cat-title {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--ink);
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}

[dir="rtl"] .bk-help-cat-title {
  letter-spacing: 0;
}

.bk-help-cat-desc {
  margin: 0;
  color: rgba(22, 19, 15, 0.65);
  font-size: 14px;
}

.bk-help-qa {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.bk-help-qa-item {
  border-bottom: 1px solid var(--line);
}

.bk-help-qa-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: start;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  transition: color 0.2s;
}

.bk-help-qa-q:hover,
.bk-help-qa-q:focus-visible {
  color: var(--accent);
  outline: none;
}

.bk-help-qa-q-text {
  flex: 1;
}

.bk-help-qa-chev {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  position: relative;
  flex-shrink: 0;
  transition: background-color 0.2s, border-color 0.2s, transform 0.25s;
}

.bk-help-qa-chev::before,
.bk-help-qa-chev::after {
  content: '';
  position: absolute;
  background: var(--ink);
  border-radius: 1px;
  top: 50%;
  left: 50%;
  transition: background-color 0.2s, transform 0.25s;
}

.bk-help-qa-chev::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.bk-help-qa-chev::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.bk-help-qa-q:hover .bk-help-qa-chev,
.bk-help-qa-item.is-open .bk-help-qa-chev {
  background: var(--ink);
  border-color: var(--ink);
}

.bk-help-qa-q:hover .bk-help-qa-chev::before,
.bk-help-qa-q:hover .bk-help-qa-chev::after,
.bk-help-qa-item.is-open .bk-help-qa-chev::before,
.bk-help-qa-item.is-open .bk-help-qa-chev::after {
  background: #fff;
}

.bk-help-qa-item.is-open .bk-help-qa-chev::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.bk-help-qa-a {
  padding: 0 0 22px;
  max-width: 760px;
}

.bk-help-qa-a p {
  margin: 0;
  color: rgba(22, 19, 15, 0.78);
  font-size: 15px;
  line-height: 1.7;
}

/* ---------- CTA ---------- */

.bk-help-cta {
  padding: 0 0 80px;
}

.bk-help-cta-card {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  background: var(--ink);
  border-radius: var(--radius-card);
  padding: 36px 42px;
  color: var(--cream);
}

.bk-help-cta-title {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 30px);
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}

[dir="rtl"] .bk-help-cta-title {
  letter-spacing: 0;
}

.bk-help-cta-body {
  margin: 0;
  color: rgba(246, 241, 234, 0.78);
  font-size: 15px;
  max-width: 520px;
}

.bk-help-cta-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.bk-help-cta-actions .theme-btn {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--ink);
}

.bk-help-cta-actions .theme-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.bk-help-cta-actions .theme-btn i {
  margin-inline-end: 8px;
}

.bk-help-cta-link {
  color: var(--cream);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(246, 241, 234, 0.45);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.bk-help-cta-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.bk-help-cta-link i {
  margin-inline-start: 6px;
  font-size: 12px;
}

/* ---------- small screens ---------- */

@media (max-width: 575px) {
  .bk-help-hero { padding: 48px 0 40px; }
  .bk-help-search input { height: 50px; }
  .bk-help-tiles { padding: 40px 0 16px; }
  .bk-help-tile { padding: 20px 18px; }
  .bk-help-cta-card { padding: 28px 24px; }
  .bk-help-cta-actions { width: 100%; }
}

/* ============================================================
   Organizer sign-up (/organizer/signup) — editorial 2-col layout
   ============================================================ */

.bk-signup-breadcrumb {
  background: transparent;
  padding: 28px 0 0;
}

.bk-signup-breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: rgba(22, 19, 15, 0.55);
}

.bk-signup-breadcrumb .breadcrumb a {
  color: var(--ink);
  text-decoration: none;
}

.bk-signup-breadcrumb .breadcrumb a:hover {
  color: var(--accent);
}

.bk-signup-breadcrumb .breadcrumb-item.active {
  color: rgba(22, 19, 15, 0.55);
}

.bk-signup-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(22, 19, 15, 0.4);
}

.bk-signup-section {
  padding: 36px 0 96px;
}

.bk-signup-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 991px) {
  .bk-signup-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ---------- left: editorial pitch ---------- */

.bk-signup-pitch {
  padding-top: 12px;
}

.bk-signup-eyebrow {
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}

[dir="rtl"] .bk-signup-eyebrow {
  letter-spacing: 0.04em;
}

.bk-signup-title {
  font-family: var(--heading-font);
  color: var(--ink);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}

[dir="rtl"] .bk-signup-title {
  letter-spacing: 0;
  line-height: 1.2;
}

.bk-signup-lede {
  color: rgba(22, 19, 15, 0.72);
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 32px;
  max-width: 480px;
}

.bk-signup-benefits {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.bk-signup-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.bk-signup-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream-deep);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.bk-signup-benefit-title {
  font-family: var(--heading-font);
  font-weight: 800;
  color: var(--ink);
  font-size: 17px;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

[dir="rtl"] .bk-signup-benefit-title {
  letter-spacing: 0;
}

.bk-signup-benefit-desc {
  color: rgba(22, 19, 15, 0.68);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

.bk-signup-have-account {
  color: rgba(22, 19, 15, 0.65);
  font-size: 14px;
  margin: 0;
}

.bk-signup-have-account a {
  color: var(--ink);
  font-weight: 700;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 1px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}

.bk-signup-have-account a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.bk-signup-have-account--mobile {
  display: none;
  margin-top: 20px;
  text-align: center;
}

@media (max-width: 991px) {
  .bk-signup-have-account--mobile { display: block; }
  .bk-signup-pitch .bk-signup-have-account { display: none; }
}

/* ---------- right: form card ---------- */

.bk-signup-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-card);
  padding: 36px 36px 32px;
  box-shadow: 0 24px 50px -40px rgba(22, 19, 15, 0.25);
}

@media (max-width: 575px) {
  .bk-signup-card { padding: 26px 22px 24px; }
}

.bk-signup-card-head {
  margin-bottom: 24px;
}

.bk-signup-card-title {
  font-family: var(--heading-font);
  color: var(--ink);
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}

[dir="rtl"] .bk-signup-card-title {
  letter-spacing: 0;
}

.bk-signup-card-sub {
  color: rgba(22, 19, 15, 0.6);
  font-size: 14px;
  margin: 0;
}

.bk-signup-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bk-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 575px) {
  .bk-form-row { grid-template-columns: 1fr; }
}

.bk-form-field label {
  display: block;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}

.bk-req {
  color: var(--accent);
  font-weight: 700;
}

.bk-input {
  width: 100%;
  height: 50px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0 18px;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
  outline: none;
}

.bk-input::placeholder {
  color: rgba(22, 19, 15, 0.42);
}

.bk-input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(22, 19, 15, 0.08);
}

.bk-input.is-invalid {
  border-color: #c0392b;
  background-color: #fdf2f2;
}

.bk-input.is-invalid:focus {
  box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.12);
}

.bk-field-error {
  margin: 6px 0 0;
  color: #c0392b;
  font-size: 13px;
  font-weight: 500;
}

.bk-signup-submit {
  margin-top: 6px;
  width: 100%;
  height: 52px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bk-signup-fineprint {
  margin: 14px 0 0;
  color: rgba(22, 19, 15, 0.55);
  font-size: 12.5px;
  line-height: 1.55;
  text-align: center;
}

.bk-signup-fineprint a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.bk-signup-fineprint a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

/* ---------- alerts ---------- */

.bk-alert {
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14px;
  margin: 0 0 18px;
  border: 1.5px solid transparent;
}

.bk-alert-success {
  background: #ecf7ee;
  border-color: #c2e6c8;
  color: #1f6b2b;
}

.bk-alert-danger {
  background: #fdecec;
  border-color: #f3c3c3;
  color: #a8261c;
}

/* ============================================================
   About BOOK@ (/about-us) — editorial story page
   ============================================================ */

.bk-about-crumbs {
  background: transparent;
  padding: 28px 0 0;
}

.bk-about-crumbs .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: rgba(22, 19, 15, 0.55);
}

.bk-about-crumbs .breadcrumb a {
  color: var(--ink);
  text-decoration: none;
}

.bk-about-crumbs .breadcrumb a:hover {
  color: var(--accent);
}

.bk-about-crumbs .breadcrumb-item.active {
  color: rgba(22, 19, 15, 0.55);
}

.bk-about-crumbs .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(22, 19, 15, 0.4);
}

/* ---------- hero ---------- */

.bk-about-hero {
  padding: 48px 0 24px;
}

.bk-about-eyebrow {
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
}

[dir="rtl"] .bk-about-eyebrow {
  letter-spacing: 0.04em;
}

.bk-about-title {
  font-family: var(--heading-font);
  color: var(--ink);
  font-weight: 800;
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
  max-width: 880px;
}

[dir="rtl"] .bk-about-title {
  letter-spacing: 0;
  line-height: 1.15;
}

.bk-about-lede {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(22, 19, 15, 0.72);
  max-width: 680px;
  margin: 0;
}

/* ---------- story (DB-driven 2-col) ---------- */

.bk-about-story {
  padding: 64px 0 72px;
}

.bk-about-story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 991px) {
  .bk-about-story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.bk-about-story-media {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--cream-deep);
  aspect-ratio: 4 / 5;
}

.bk-about-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .bk-about-story-media { aspect-ratio: 16 / 10; }
}

.bk-about-story-title {
  font-family: var(--heading-font);
  color: var(--ink);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
}

[dir="rtl"] .bk-about-story-title {
  letter-spacing: 0;
}

.bk-about-story-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 600;
  margin: 0 0 22px;
}

.bk-about-story-text {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(22, 19, 15, 0.78);
}

.bk-about-story-text p {
  margin: 0 0 14px;
}

.bk-about-story-text p:last-child {
  margin-bottom: 0;
}

/* ---------- statement band ---------- */

.bk-about-statement {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0;
  border-top: 1px solid rgba(22, 19, 15, 0.3);
  border-bottom: 1px solid rgba(22, 19, 15, 0.3);
}

.bk-about-statement-text {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--cream);
  max-width: 900px;
  margin: 0;
}

[dir="rtl"] .bk-about-statement-text {
  letter-spacing: 0;
  line-height: 1.25;
}

/* ---------- principles ---------- */

.bk-about-principles {
  padding: 80px 0;
}

.bk-about-section-head {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(22, 19, 15, 0.6);
  margin: 0 0 36px;
}

[dir="rtl"] .bk-about-section-head {
  letter-spacing: 0.04em;
}

.bk-about-principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

@media (max-width: 767px) {
  .bk-about-principle-grid {
    grid-template-columns: 1fr;
  }
}

.bk-about-principle {
  padding: 32px 28px 32px 0;
  border-bottom: 1px solid var(--line);
  border-inline-end: 1px solid var(--line);
}

.bk-about-principle:last-child {
  border-inline-end: 0;
}

@media (max-width: 767px) {
  .bk-about-principle {
    padding: 28px 0;
    border-inline-end: 0;
  }
  .bk-about-principle:last-child { border-bottom: 0; }
}

.bk-about-principle-num {
  display: inline-block;
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin: 0 0 14px;
}

.bk-about-principle-title {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0 0 10px;
}

[dir="rtl"] .bk-about-principle-title {
  letter-spacing: 0;
}

.bk-about-principle-desc {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(22, 19, 15, 0.72);
  margin: 0;
}

/* ---------- CTA strip ---------- */

.bk-about-cta {
  padding: 0 0 96px;
}

.bk-about-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.bk-about-cta-title {
  font-family: var(--heading-font);
  font-weight: 800;
  color: var(--ink);
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}

[dir="rtl"] .bk-about-cta-title {
  letter-spacing: 0;
}

.bk-about-cta-sub {
  color: rgba(22, 19, 15, 0.6);
  font-size: 15px;
  margin: 0;
}

.bk-about-cta-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.bk-about-cta-link {
  color: var(--ink);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.bk-about-cta-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.bk-about-cta-link i {
  margin-inline-start: 6px;
  font-size: 12px;
}

@media (max-width: 575px) {
  .bk-about-hero { padding: 36px 0 16px; }
  .bk-about-story { padding: 48px 0 56px; }
  .bk-about-statement { padding: 56px 0; }
  .bk-about-principles { padding: 56px 0; }
}

/* ============================================================
   Contact (/contact) — editorial 2-col with map
   ============================================================ */

.bk-contact-crumbs {
  background: transparent;
  padding: 28px 0 0;
}

.bk-contact-crumbs .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: rgba(22, 19, 15, 0.55);
}

.bk-contact-crumbs .breadcrumb a {
  color: var(--ink);
  text-decoration: none;
}

.bk-contact-crumbs .breadcrumb a:hover {
  color: var(--accent);
}

.bk-contact-crumbs .breadcrumb-item.active {
  color: rgba(22, 19, 15, 0.55);
}

.bk-contact-crumbs .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(22, 19, 15, 0.4);
}

.bk-contact-section {
  padding: 36px 0 80px;
}

.bk-contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 991px) {
  .bk-contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ---------- left: pitch ---------- */

.bk-contact-pitch {
  padding-top: 12px;
}

.bk-contact-eyebrow {
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}

[dir="rtl"] .bk-contact-eyebrow {
  letter-spacing: 0.04em;
}

.bk-contact-title {
  font-family: var(--heading-font);
  color: var(--ink);
  font-weight: 800;
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

[dir="rtl"] .bk-contact-title {
  letter-spacing: 0;
  line-height: 1.15;
}

.bk-contact-lede {
  color: rgba(22, 19, 15, 0.72);
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 36px;
  max-width: 520px;
}

.bk-contact-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-top: 1px solid var(--line);
}

.bk-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.bk-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream-deep);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.bk-contact-label {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(22, 19, 15, 0.55);
  margin: 0 0 4px;
}

[dir="rtl"] .bk-contact-label {
  letter-spacing: 0.02em;
}

.bk-contact-value {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
}

.bk-contact-value a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.bk-contact-value a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.bk-contact-replytime {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(22, 19, 15, 0.6);
  margin: 0;
  padding: 12px 16px;
  background: var(--cream-deep);
  border-radius: var(--radius-pill);
}

.bk-contact-replytime i {
  color: var(--accent);
}

/* ---------- right: form card ---------- */

.bk-contact-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-card);
  padding: 36px 36px 32px;
  box-shadow: 0 24px 50px -40px rgba(22, 19, 15, 0.25);
}

@media (max-width: 575px) {
  .bk-contact-card { padding: 26px 22px 24px; }
}

.bk-contact-card-head {
  margin-bottom: 24px;
}

.bk-contact-card-title {
  font-family: var(--heading-font);
  color: var(--ink);
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}

[dir="rtl"] .bk-contact-card-title {
  letter-spacing: 0;
}

.bk-contact-card-sub {
  color: rgba(22, 19, 15, 0.6);
  font-size: 14px;
  margin: 0;
}

.bk-contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bk-textarea {
  height: auto;
  padding: 14px 18px;
  line-height: 1.55;
  resize: vertical;
  min-height: 130px;
}

.bk-contact-submit {
  margin-top: 6px;
  width: 100%;
  height: 52px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------- map ---------- */

.bk-contact-map {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
  background: var(--cream-deep);
}

.bk-contact-map iframe {
  display: block;
  width: 100%;
  filter: grayscale(0.15) contrast(0.95);
}

@media (max-width: 767px) {
  .bk-contact-map iframe { height: 380px; }
}

/* ============================================================
   Legal / policy pages (custom-page.blade.php)
   Shared editorial wrapper for Terms, Privacy, Refund, etc.
   ============================================================ */

.bk-legal-crumbs {
  background: transparent;
  padding: 28px 0 0;
}

.bk-legal-crumbs .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: rgba(22, 19, 15, 0.55);
}

.bk-legal-crumbs .breadcrumb a {
  color: var(--ink);
  text-decoration: none;
}

.bk-legal-crumbs .breadcrumb a:hover {
  color: var(--accent);
}

.bk-legal-crumbs .breadcrumb-item.active {
  color: rgba(22, 19, 15, 0.55);
}

.bk-legal-crumbs .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(22, 19, 15, 0.4);
}

/* ---------- hero ---------- */

.bk-legal-hero {
  padding: 48px 0 36px;
  border-bottom: 1px solid var(--line);
}

.bk-legal-eyebrow {
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}

[dir="rtl"] .bk-legal-eyebrow {
  letter-spacing: 0.04em;
}

.bk-legal-title {
  font-family: var(--heading-font);
  color: var(--ink);
  font-weight: 800;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  max-width: 880px;
}

[dir="rtl"] .bk-legal-title {
  letter-spacing: 0;
  line-height: 1.15;
}

.bk-legal-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 13px;
  color: rgba(22, 19, 15, 0.55);
}

.bk-legal-meta i {
  color: var(--accent);
}

/* ---------- body ---------- */

.bk-legal-body {
  padding: 56px 0 96px;
}

.bk-legal-content {
  max-width: 760px;
  color: rgba(22, 19, 15, 0.82);
  font-size: 16px;
  line-height: 1.75;
}

.bk-legal-content > *:first-child {
  margin-top: 0;
}

.bk-legal-content > *:last-child {
  margin-bottom: 0;
}

.bk-legal-content p {
  margin: 0 0 18px;
}

.bk-legal-content h2 {
  font-family: var(--heading-font);
  font-weight: 800;
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.02em;
  margin: 44px 0 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 100px;
}

[dir="rtl"] .bk-legal-content h2 {
  letter-spacing: 0;
}

.bk-legal-content > h2:first-child {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

.bk-legal-content h3 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--ink);
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 24px 0 10px;
}

[dir="rtl"] .bk-legal-content h3 {
  letter-spacing: 0;
}

.bk-legal-content ul,
.bk-legal-content ol {
  margin: 0 0 18px;
  padding-inline-start: 22px;
}

.bk-legal-content li {
  margin-bottom: 8px;
}

.bk-legal-content li:last-child {
  margin-bottom: 0;
}

.bk-legal-content a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.bk-legal-content a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.bk-legal-content strong,
.bk-legal-content b {
  color: var(--ink);
  font-weight: 700;
}

.bk-legal-content blockquote {
  margin: 24px 0;
  padding: 16px 22px;
  background: var(--cream-deep);
  border-inline-start: 3px solid var(--accent);
  border-radius: 8px;
  font-style: normal;
  color: var(--ink);
}

.bk-legal-content blockquote p:last-child {
  margin-bottom: 0;
}

/* Summary callout — author can wrap with .bk-legal-summary inside the WYSIWYG */
.bk-legal-content .bk-legal-summary {
  margin: 0 0 32px;
  padding: 18px 22px;
  background: var(--cream-deep);
  border-radius: var(--radius-card);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink);
}

.bk-legal-content .bk-legal-summary p {
  margin: 0;
}

.bk-legal-content .bk-legal-summary strong {
  display: block;
  font-family: var(--heading-font);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 6px;
}

[dir="rtl"] .bk-legal-content .bk-legal-summary strong {
  letter-spacing: 0.02em;
}

/* ---------- footer CTA ---------- */

.bk-legal-footer {
  max-width: 760px;
  margin: 56px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.bk-legal-footer-text {
  margin: 0;
  font-size: 15px;
  color: rgba(22, 19, 15, 0.7);
}

.bk-legal-footer-text a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 1px;
  margin-inline-start: 6px;
  transition: color 0.2s, border-color 0.2s;
}

.bk-legal-footer-text a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

@media (max-width: 575px) {
  .bk-legal-hero { padding: 36px 0 28px; }
  .bk-legal-body { padding: 40px 0 64px; }
  .bk-legal-content { font-size: 15.5px; }
}

/* ============================================================
   Auth — compact centered card (login / forget / reset)
   Reuses .bk-input, .bk-form-field, .bk-alert-*, .bk-field-error
   ============================================================ */

.bk-auth-crumbs {
  background: transparent;
  padding: 28px 0 0;
}

.bk-auth-crumbs .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: rgba(22, 19, 15, 0.55);
}

.bk-auth-crumbs .breadcrumb a {
  color: var(--ink);
  text-decoration: none;
}

.bk-auth-crumbs .breadcrumb a:hover {
  color: var(--accent);
}

.bk-auth-crumbs .breadcrumb-item.active {
  color: rgba(22, 19, 15, 0.55);
}

.bk-auth-crumbs .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(22, 19, 15, 0.4);
}

.bk-auth-section {
  padding: 36px 0 96px;
  display: flex;
  justify-content: center;
}

.bk-auth-shell {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}

.bk-auth-eyebrow {
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
  text-align: center;
}

[dir="rtl"] .bk-auth-eyebrow {
  letter-spacing: 0.04em;
}

.bk-auth-title {
  font-family: var(--heading-font);
  color: var(--ink);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  text-align: center;
}

[dir="rtl"] .bk-auth-title {
  letter-spacing: 0;
}

.bk-auth-lede {
  color: rgba(22, 19, 15, 0.6);
  font-size: 14.5px;
  margin: 0 0 24px;
  text-align: center;
}

.bk-auth-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-card);
  padding: 32px 32px 28px;
  box-shadow: 0 24px 50px -40px rgba(22, 19, 15, 0.25);
}

@media (max-width: 575px) {
  .bk-auth-card { padding: 24px 22px 22px; }
  .bk-auth-section { padding: 24px 0 64px; }
}

.bk-auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bk-auth-submit {
  margin-top: 4px;
  width: 100%;
  height: 50px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bk-auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 6px;
  font-family: var(--heading-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(22, 19, 15, 0.4);
}

[dir="rtl"] .bk-auth-divider {
  letter-spacing: 0.02em;
}

.bk-auth-divider::before,
.bk-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.bk-auth-social {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.bk-auth-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 46px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--ink);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}

.bk-auth-social-btn:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--cream-deep);
}

.bk-auth-social-btn i {
  font-size: 16px;
}

.bk-auth-social-btn.is-google i { color: #ea4335; }
.bk-auth-social-btn.is-facebook i { color: #1877f2; }

.bk-auth-meta {
  margin: 22px 0 0;
  text-align: center;
  font-size: 14px;
  color: rgba(22, 19, 15, 0.65);
}

.bk-auth-meta a {
  color: var(--ink);
  font-weight: 700;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 1px;
  text-decoration: none;
  margin: 0 4px;
  transition: color 0.2s, border-color 0.2s;
}

.bk-auth-meta a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.bk-auth-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  font-size: 13.5px;
}

.bk-auth-forgot {
  text-align: end;
  margin: -4px 0 4px;
  font-size: 13px;
}

.bk-auth-forgot a {
  color: rgba(22, 19, 15, 0.65);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.bk-auth-forgot a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.bk-auth-guest-banner {
  background: var(--cream-deep);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 18px;
  text-align: center;
  font-size: 14px;
}

.bk-auth-guest-banner a {
  display: inline-block;
  margin-top: 6px;
  padding: 8px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-pill);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: background-color 0.2s;
}

.bk-auth-guest-banner a:hover {
  background: var(--accent);
  color: #fff;
}

.bk-auth-resend-row {
  margin-top: 10px;
  text-align: center;
}

.bk-auth-resend-row button {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.bk-auth-resend-row button:hover {
  background: var(--ink);
  color: #fff;
}

/* When .bk-signup-card hosts social-login buttons (customer signup) */
.bk-signup-card .bk-auth-social,
.bk-signup-card .bk-auth-divider {
  margin-left: 0;
  margin-right: 0;
}

/* ============================================================
   Customer dashboard — sidebar + main shell
   Used by: dashboard index, edit-profile, change-password,
            wishlist, my-bookings, my-orders, my-courses,
            customer/giftcards, support-ticket pages
   ============================================================ */

.bk-dash-section {
  padding: 36px 0 96px;
}

.bk-dash-crumbs {
  background: transparent;
  padding: 28px 0 0;
  margin-bottom: 12px;
}

.bk-dash-crumbs .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: rgba(22, 19, 15, 0.55);
}

.bk-dash-crumbs .breadcrumb a {
  color: var(--ink);
  text-decoration: none;
}

.bk-dash-crumbs .breadcrumb a:hover {
  color: var(--accent);
}

.bk-dash-crumbs .breadcrumb-item.active {
  color: rgba(22, 19, 15, 0.55);
}

.bk-dash-crumbs .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(22, 19, 15, 0.4);
}

.bk-dash-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
}

@media (max-width: 991px) {
  .bk-dash-shell {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ---------- sidebar ---------- */

.bk-dash-side {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-card);
  padding: 24px 18px;
  position: sticky;
  top: 96px;
}

@media (max-width: 991px) {
  .bk-dash-side { position: static; }
}

.bk-dash-side-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 10px 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}

.bk-dash-side-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 18px;
}

.bk-dash-side-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bk-dash-side-name {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}

.bk-dash-side-email {
  margin: 2px 0 0;
  font-size: 12px;
  color: rgba(22, 19, 15, 0.55);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 180px;
}

.bk-dash-side-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bk-dash-side-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: rgba(22, 19, 15, 0.75);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.bk-dash-side-link i {
  width: 18px;
  font-size: 14px;
  color: rgba(22, 19, 15, 0.55);
  transition: color 0.2s;
}

.bk-dash-side-link:hover {
  background: var(--cream-deep);
  color: var(--ink);
}

.bk-dash-side-link:hover i {
  color: var(--accent);
}

.bk-dash-side-link.is-active {
  background: var(--ink);
  color: #fff;
}

.bk-dash-side-link.is-active i {
  color: #fff;
}

.bk-dash-side-link.is-logout {
  margin-top: 8px;
  border-top: 1px solid var(--line);
  border-radius: 0 0 10px 10px;
  padding-top: 14px;
}

/* ---------- main ---------- */

.bk-dash-main {
  min-width: 0;
}

.bk-dash-header {
  margin-bottom: 24px;
}

.bk-dash-eyebrow {
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 8px;
}

[dir="rtl"] .bk-dash-eyebrow {
  letter-spacing: 0.04em;
}

.bk-dash-title {
  font-family: var(--heading-font);
  color: var(--ink);
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 6px;
}

[dir="rtl"] .bk-dash-title {
  letter-spacing: 0;
}

.bk-dash-sub {
  font-size: 15px;
  color: rgba(22, 19, 15, 0.65);
  margin: 0;
}

.bk-dash-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-card);
  padding: 28px;
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .bk-dash-card { padding: 20px 18px; }
}

.bk-dash-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.bk-dash-card-title {
  font-family: var(--heading-font);
  color: var(--ink);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.015em;
  margin: 0;
}

[dir="rtl"] .bk-dash-card-title {
  letter-spacing: 0;
}

.bk-dash-card-action {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.bk-dash-card-action:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ---------- stats grid ---------- */

.bk-dash-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.bk-dash-stat {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-card);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bk-dash-stat-label {
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(22, 19, 15, 0.55);
}

[dir="rtl"] .bk-dash-stat-label {
  letter-spacing: 0.02em;
}

.bk-dash-stat-num {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 28px;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

[dir="rtl"] .bk-dash-stat-num {
  letter-spacing: 0;
}

.bk-dash-stat-sub {
  font-size: 12px;
  color: rgba(22, 19, 15, 0.55);
}

/* ---------- meta list (label: value pairs) ---------- */

.bk-dash-meta-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px 32px;
}

.bk-dash-meta-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bk-dash-meta-label {
  font-family: var(--heading-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(22, 19, 15, 0.55);
}

[dir="rtl"] .bk-dash-meta-label {
  letter-spacing: 0.02em;
}

.bk-dash-meta-value {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  word-break: break-word;
}

/* ---------- table ---------- */

.bk-dash-table-wrap {
  overflow-x: auto;
  margin: 0 -4px;
  padding: 0 4px;
}

.bk-dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.bk-dash-table thead th {
  text-align: start;
  font-family: var(--heading-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(22, 19, 15, 0.55);
  padding: 14px 16px;
  background: var(--cream-deep);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

[dir="rtl"] .bk-dash-table thead th {
  letter-spacing: 0.02em;
}

.bk-dash-table thead th:first-child {
  border-start-start-radius: 12px;
}

.bk-dash-table thead th:last-child {
  border-start-end-radius: 12px;
}

.bk-dash-table tbody td {
  padding: 16px 16px;
  border-bottom: 1px solid var(--line);
  color: rgba(22, 19, 15, 0.85);
  vertical-align: middle;
}

.bk-dash-table tbody tr:last-child td {
  border-bottom: 0;
}

.bk-dash-table tbody tr:hover td {
  background: rgba(246, 241, 234, 0.5);
}

.bk-dash-table .bk-dash-row-title {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--ink);
  font-size: 14.5px;
}

.bk-dash-table .bk-dash-row-sub {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: rgba(22, 19, 15, 0.55);
}

/* ---------- status pills ---------- */

.bk-dash-status {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--heading-font);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

[dir="rtl"] .bk-dash-status {
  letter-spacing: 0;
}

.bk-dash-status.is-completed,
.bk-dash-status.is-success,
.bk-dash-status.is-delivered,
.bk-dash-status.is-active {
  background: #e1f2e3;
  color: #1e6b2b;
}

.bk-dash-status.is-pending,
.bk-dash-status.is-processing {
  background: #fff1d6;
  color: #8a5a00;
}

.bk-dash-status.is-rejected,
.bk-dash-status.is-cancelled,
.bk-dash-status.is-failed {
  background: #fadcdc;
  color: #9c241c;
}

.bk-dash-status.is-neutral {
  background: var(--cream-deep);
  color: var(--ink);
}

/* ---------- empty state ---------- */

.bk-dash-empty {
  text-align: center;
  padding: 48px 24px;
}

.bk-dash-empty-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream-deep);
  color: rgba(22, 19, 15, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 24px;
}

.bk-dash-empty-title {
  font-family: var(--heading-font);
  color: var(--ink);
  font-weight: 800;
  font-size: 18px;
  margin: 0 0 6px;
}

.bk-dash-empty-body {
  color: rgba(22, 19, 15, 0.65);
  font-size: 14px;
  margin: 0 auto 18px;
  max-width: 380px;
}

/* ---------- pagination ---------- */

.bk-dash-pagination {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.bk-dash-pagination .pagination,
.bk-dash-pagination ul {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bk-dash-pagination .page-item .page-link,
.bk-dash-pagination ul li a,
.bk-dash-pagination ul li span {
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  background: #fff;
  text-decoration: none;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.bk-dash-pagination .page-item.active .page-link,
.bk-dash-pagination ul li.active a,
.bk-dash-pagination ul li.active span {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.bk-dash-pagination .page-item.disabled .page-link,
.bk-dash-pagination ul li.disabled a,
.bk-dash-pagination ul li.disabled span {
  opacity: 0.4;
  cursor: not-allowed;
}

.bk-dash-pagination a:hover {
  border-color: var(--ink);
  color: var(--ink);
}

/* ---------- conversation thread (support ticket messages) ---------- */

.bk-dash-thread {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bk-dash-msg {
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--cream-deep);
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 80%;
  align-self: flex-start;
  border: 1px solid var(--line);
}

.bk-dash-msg.is-mine {
  background: var(--ink);
  color: #fff;
  align-self: flex-end;
  border-color: var(--ink);
}

.bk-dash-msg-head {
  font-family: var(--heading-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.65;
  margin: 0 0 6px;
}

[dir="rtl"] .bk-dash-msg-head {
  letter-spacing: 0;
}

.bk-dash-msg p {
  margin: 0;
}

.bk-dash-msg + .bk-dash-msg {
  margin-top: 0;
}

/* ============================================================
   Payment / order success pages
   ============================================================ */

.bk-success-section {
  padding: 56px 0 96px;
  display: flex;
  justify-content: center;
}

.bk-success-shell {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.bk-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--cream-deep);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 22px;
}

.bk-success-icon.is-pending {
  color: #8a5a00;
}

.bk-success-icon.is-failure {
  color: #9c241c;
}

.bk-success-eyebrow {
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}

[dir="rtl"] .bk-success-eyebrow {
  letter-spacing: 0.04em;
}

.bk-success-title {
  font-family: var(--heading-font);
  color: var(--ink);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
}

[dir="rtl"] .bk-success-title {
  letter-spacing: 0;
}

.bk-success-body {
  font-size: 16px;
  color: rgba(22, 19, 15, 0.72);
  line-height: 1.55;
  margin: 0 0 28px;
}

.bk-success-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-card);
  padding: 24px 28px;
  text-align: start;
  margin-bottom: 24px;
}

.bk-success-card-title {
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(22, 19, 15, 0.55);
  margin: 0 0 14px;
}

[dir="rtl"] .bk-success-card-title {
  letter-spacing: 0.02em;
}

.bk-success-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px 24px;
}

.bk-success-meta-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bk-success-meta-label {
  font-family: var(--heading-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(22, 19, 15, 0.55);
}

.bk-success-meta-value {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  word-break: break-word;
}

.bk-success-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.bk-success-actions .theme-btn {
  min-width: 200px;
}

.bk-success-link {
  color: var(--ink);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.bk-success-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.bk-success-calendar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--ink);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.bk-success-calendar:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.bk-success-calendar i {
  color: var(--accent);
}
