:root {
  --bg: #f2f3f5;
  --paper: #fffdf8;
  --ink: #162123;
  --accent: #c6542f;
  --accent-strong: #9f3114;
  --hover-blue: #1ea7ff;
  --hover-blue-soft: rgba(30, 167, 255, 0.14);
  --olive: #3f5b3d;
  --line: rgba(22, 33, 35, 0.14);
  --shadow: 0 20px 60px rgba(22, 33, 35, 0.12);
  --radius: 4px;
  --link-base: #011d36;
  --link-hover: #0281c2;
  --mobile-nav-bg: var(--bg);
  --mobile-nav-border: rgba(147, 163, 189, 0.44);
  --mobile-nav-shadow: 0 -6px 16px rgba(21, 39, 66, 0.14);
  --mobile-nav-icon: #1f2a37;
  --mobile-nav-icon-active: #ffffff;
  --mobile-nav-icon-size: 22px;
  --mobile-nav-chip-size: 40px;
  --mobile-nav-chip-bg: rgba(236, 242, 250, 0.98);
  --mobile-nav-chip-border: rgba(170, 184, 207, 0.9);
  --mobile-nav-chip-active-bg: #2c3532;
  --mobile-nav-chip-active-border: #2c3532;
  --mobile-search-bg: rgba(7, 18, 36, 0.96);
  --mobile-search-border: rgba(138, 168, 224, 0.32);
  --mobile-search-input-bg: rgba(12, 29, 57, 0.95);
  --mobile-search-input-border: rgba(138, 168, 224, 0.3);
  --mobile-search-input-text: #ecf4ff;
  --mobile-search-submit-bg: linear-gradient(160deg, #3073ff, #2258cb);
  --mobile-search-submit-border: rgba(83, 141, 255, 0.5);
  --mobile-search-submit-text: #ffffff;
  --box-border: #a4b3b5;
  --box-text: #011d36;
  --box-hover-text: #0281c2;
  --box-hover-soft: rgba(255, 163, 180, 0.16);
  --content-offset: clamp(2.2rem, 4vw, 3rem);
  --header-line-start: calc(var(--content-offset) - 0.52rem);
}

button,
[class*="btn"],
[class*="button"],
.venue-detail-action,
.venue-detail-action-secondary,
.istanbul-filter-reset,
.admin-table-action,
.admin-logout-button,
.istanbul-favorite-button,
.istanbul-tag-button {
  border-radius: 4px !important;
}

input,
select,
textarea,
.card,
[class*="card"],
[class*="panel"],
[class*="box"],
[class*="tile"],
[class*="thumb"],
[class*="badge"],
.home-info-link {
  border-radius: 4px !important;
}

[class*="pill"],
[class*="chip"] {
  border-radius: 0 !important;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--bg);
  font-family: "Plus Jakarta Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.45;
}

[hidden] {
  display: none !important;
}

body.theme-light {
  --mobile-nav-bg: var(--bg);
  --mobile-nav-border: rgba(147, 163, 189, 0.44);
  --mobile-nav-shadow: 0 -6px 16px rgba(21, 39, 66, 0.14);
  --mobile-nav-icon: #1f2a37;
  --mobile-nav-icon-active: #ffffff;
  --mobile-nav-icon-size: 22px;
  --mobile-nav-chip-size: 40px;
  --mobile-nav-chip-bg: rgba(236, 242, 250, 0.98);
  --mobile-nav-chip-border: rgba(170, 184, 207, 0.9);
  --mobile-nav-chip-active-bg: #2c3532;
  --mobile-nav-chip-active-border: #2c3532;
  --mobile-search-bg: rgba(255, 255, 255, 0.98);
  --mobile-search-border: rgba(26, 61, 115, 0.2);
  --mobile-search-input-bg: #f5f9ff;
  --mobile-search-input-border: rgba(26, 61, 115, 0.25);
  --mobile-search-input-text: #0f2542;
  --mobile-search-submit-bg: linear-gradient(160deg, #3c79ff, #2556c2);
  --mobile-search-submit-border: rgba(48, 100, 214, 0.45);
  --mobile-search-submit-text: #ffffff;
}

a[href],
a[href]:visited {
  color: var(--link-base);
  text-decoration: none;
  transition: color 0.16s ease;
}

a[href]:hover,
a[href]:focus-visible {
  color: var(--link-hover);
  text-decoration: none;
  outline: none;
}

.texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(22, 33, 35, 0.03) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.45;
}

.hero,
main {
  width: min(1220px, calc(100% - 2.4rem));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.hero {
  padding: 1.4rem 0 2rem;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.2rem;
  gap: 1rem;
}

.global-header-band {
  width: min(1220px, calc(100% - 2.4rem));
  margin-inline: auto;
  position: relative;
  padding-top: calc(74px + 0.38rem + 0.9rem);
  background: var(--bg);
}

.global-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: none;
  z-index: 1200;
  box-sizing: border-box;
  min-height: 74px;
  padding-inline-start: max(calc((100vw - 1220px) / 2 + var(--header-line-start)), calc(1.2rem + var(--header-line-start)));
  padding-inline-end: max(calc((100vw - 1220px) / 2), 1.2rem);
  padding-bottom: 0.38rem;
  border-bottom: 1px solid #b8c8dc;
  background: #fefefe;
}

.global-topbar::after {
  content: none;
}

.global-topbar .brand-wordmark {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-size: clamp(2.05rem, 3.45vw, 3.05rem);
  font-weight: 800;
  letter-spacing: -0.038em;
}

.desktop-auth-links {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  flex: 0 0 auto;
  margin-top: 0.08rem;
}

.desktop-lang-switch .lang-switch-btn {
  min-height: 2.04rem;
  padding: 0.16rem 0.5rem;
  border-radius: 6px;
  background: #fffdf8;
}

.desktop-lang-switch .lang-switch-menu {
  right: 0;
}

.desktop-auth-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.18rem;
  min-height: 2.18rem;
  padding: 0.1rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #165d5b;
  box-shadow: none;
  text-decoration: none;
  transition: color 0.16s ease;
}

.desktop-auth-link-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.desktop-auth-link-icon {
  width: 1.18rem;
  height: 1.18rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.desktop-auth-link-image {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  object-fit: contain;
}

.desktop-auth-link:hover,
.desktop-auth-link:focus-visible {
  color: #0f7f62;
  transform: none;
  outline: none;
}

.desktop-auth-link-settings {
  color: #8c4e2f;
}

.desktop-auth-link-settings:hover,
.desktop-auth-link-settings:focus-visible {
  color: #b45d2c;
}

.desktop-auth-link.is-active {
  color: #b45d2c;
}

.global-topline {
  border-top: 0;
  background: inherit;
}

@media (max-width: 900px) {
  .desktop-auth-links {
    display: flex;
    margin-left: auto;
    margin-top: 0;
    gap: 0.34rem;
  }
}

.global-topline:empty {
  display: none;
}

.search-page .hero {
  width: min(1220px, calc(100% - 2.4rem));
  padding-top: 1.15rem;
  min-height: 2rem;
}

.search-page .global-header-band {
  margin-top: 0;
}

.search-page .search-topbar {
  justify-content: flex-start;
  padding-inline: 0;
}

.search-page .search-topbar .brand {
  margin-inline-start: 0;
}

.search-page-shell {
  display: grid;
  gap: 0;
  padding-top: 0.5rem;
}

.search-page-note {
  margin: 0.85rem 0 0;
  max-width: 760px;
  color: #5d6a75;
  font-size: 0.95rem;
  line-height: 1.5;
}

.search-page .hero .header-search {
  width: min(760px, 100%);
  max-width: min(760px, 100%);
  flex: 0 1 auto;
}

.search-page .header-search-btn {
  border: 0;
  background: #011d36;
  color: #e1e1e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  min-width: 56px;
  padding: 0 0.72rem;
  gap: 0;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1;
  text-indent: 0;
  overflow: visible;
  white-space: nowrap;
}

.search-page .header-search-btn:hover {
  background: #384796;
  color: #e1e1e1;
  transform: none;
  box-shadow: none;
  outline: none;
}

.search-page .header-search-btn:focus-visible {
  border: 0;
  background: #022746;
  color: #e1e1e1;
  transform: translateY(-1px);
  box-shadow: 0 0 0 2px var(--hover-blue-soft);
  outline: none;
}

.search-page .header-search-btn:disabled {
  opacity: 0.82;
  cursor: not-allowed;
}

.global-topline-inner {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 0.48rem;
  font-size: 0.92rem;
  color: rgba(22, 33, 35, 0.78);
  margin-inline-start: var(--header-line-start);
  padding: 0.18rem 0.25rem 0 0;
}

.content-page .global-topline-inner {
  font-size: 0.93rem;
}

.global-topline-inner a {
  color: var(--link-base);
  text-decoration: none;
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex: 1 1 360px;
  max-width: 460px;
  min-width: 220px;
}

.header-search-input {
  width: 100%;
  min-height: 38px;
  border: 1px solid rgba(22, 33, 35, 0.2);
  border-radius: 12px;
  background: #ffffff;
  color: rgba(22, 33, 35, 0.95);
  padding: 0.42rem 0.86rem;
  font: inherit;
  font-size: 0.9rem;
}

.header-search-input::placeholder {
  color: rgba(22, 33, 35, 0.58);
}

.header-search-input:focus-visible {
  border-color: var(--hover-blue);
  box-shadow: 0 0 0 2px var(--hover-blue-soft);
  outline: none;
}

.header-search-btn {
  border: 0;
  border-radius: 4px;
  background: #011d36;
  color: #e1e1e1;
  min-height: 34px;
  min-width: 56px;
  padding: 0 0.72rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1;
  text-indent: 0;
  overflow: visible;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.16s ease, transform 0.12s ease, box-shadow 0.16s ease;
}

.header-search-btn:hover {
  background: #384796;
  transform: none;
  box-shadow: none;
  outline: none;
}

.header-search-btn:focus-visible {
  border: 0;
  background: #022746;
  color: #e1e1e1;
  transform: translateY(-1px);
  box-shadow: 0 0 0 2px var(--hover-blue-soft);
  outline: none;
}

.brand-wordmark {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: clamp(2.05rem, 3.45vw, 3.05rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: #797152;
  text-transform: none;
  transform: none;
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand-wordmark-search {
  color: #011d36;
}

.brand-wordmark-rest {
  color: inherit;
}

.brand-wordmark::before {
  content: "";
  width: 1.18em;
  height: 1.18em;
  flex: 0 0 1.18em;
  margin-right: 0.4rem;
  background: url("assets/hedef-blue.png?v=20260322-01") center / contain no-repeat;
}

@media (max-width: 620px) {
  .brand-wordmark {
    font-size: clamp(2.05rem, 3.45vw, 3.05rem);
  }
}

.auth-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.lang-switch {
  position: relative;
}

.lang-switch-btn {
  border: 1px solid rgba(22, 33, 35, 0.18);
  border-radius: 4px;
  min-height: 32px;
  padding: 0.22rem 0.56rem;
  background: inherit;
  color: #40474d;
  display: inline-flex;
  align-items: center;
  gap: 0.26rem;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  transition: color 0.16s ease, border-color 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}

.lang-switch-btn:hover,
.lang-switch-btn:focus-visible {
  border-color: var(--hover-blue);
  background: var(--hover-blue-soft);
  color: #116466;
  box-shadow: 0 0 0 2px var(--hover-blue-soft);
  outline: none;
}

.lang-switch.is-open .lang-switch-btn {
  border-color: var(--hover-blue);
  background: var(--hover-blue-soft);
  color: #116466;
  box-shadow: 0 0 0 2px var(--hover-blue-soft);
}

.lang-switch-code {
  font-weight: 400;
  letter-spacing: 0.01em;
}

.lang-switch-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: auto;
  min-width: 178px;
  border: 1px solid rgba(22, 33, 35, 0.16);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 31, 40, 0.16);
  padding: 0.36rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.24rem;
  z-index: 1200;
}

.lang-switch-menu[hidden] {
  display: none !important;
}

.lang-switch-title {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(22, 33, 35, 0.56);
  padding: 0.08rem 0.3rem 0.16rem;
}

.lang-switch-option {
  width: auto;
  min-width: 31px;
  border: 1px solid rgba(22, 33, 35, 0.18);
  border-radius: 4px;
  background: inherit;
  color: #40474d;
  padding: 0.22rem 0.35rem;
  text-align: center;
  font: inherit;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: border-color 0.16s ease, color 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}

.lang-switch-option:hover,
.lang-switch-option:focus-visible {
  border-color: var(--hover-blue);
  color: #116466;
  background: var(--hover-blue-soft);
  box-shadow: 0 0 0 2px var(--hover-blue-soft);
  outline: none;
}

.lang-switch-option.active {
  border-color: var(--hover-blue);
  color: #116466;
  background: var(--hover-blue-soft);
}

.auth-welcome {
  margin: 0;
  font-size: 0.95rem;
  color: #116466;
}

.auth-btn {
  border: 0;
  border-radius: 0;
  min-height: auto;
  padding: 0.2rem 0.12rem;
  font: inherit;
  font-size: 1.02rem;
  font-weight: 400;
  cursor: pointer;
  transition: color 0.16s ease;
}

.auth-btn-outline {
  background: transparent;
  color: #116466;
}

.auth-btn-solid {
  background: transparent;
  color: #116466;
}

.auth-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
}

.auth-link-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.auth-btn:hover,
.auth-btn:focus-visible {
  color: #116466;
  background: transparent;
  outline: none;
}

#logoutBtn {
  color: #e34b32;
}

#logoutBtn:hover,
#logoutBtn:focus-visible {
  color: #ff6a4f;
}

.hero-content {
  background: linear-gradient(140deg, rgba(255, 253, 248, 0.92), rgba(255, 239, 215, 0.9));
  border: 1px solid rgba(22, 33, 35, 0.12);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 2.7vw, 2.5rem);
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: transparent;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.auth-modal-panel {
  width: min(322px, 100%);
  border-radius: 0;
  border: 1px solid rgba(22, 33, 35, 0.2);
  background: #ffffff;
  box-shadow: 0 22px 56px rgba(11, 30, 38, 0.24);
  padding: 1rem 1rem 1.1rem;
  position: relative;
}

.auth-modal-title {
  margin: 0;
  font-size: clamp(1.45rem, 4vw, 1.9rem);
  line-height: 1.08;
  color: #15252c;
}

.auth-modal-close {
  position: static;
  display: block;
  margin-left: auto;
  margin-bottom: 0.45rem;
  width: 32px;
  height: 32px;
  border-radius: 0;
  border: 1px solid rgba(22, 33, 35, 0.16);
  background: #ffffff;
  color: rgba(22, 33, 35, 0.74);
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.auth-modal-close:hover,
.auth-modal-close:focus-visible {
  border-color: #0281c2;
  color: #0281c2;
  outline: none;
}

.auth-modal-text {
  margin: 0.35rem 0 0.85rem;
  font-size: 0.92rem;
  color: rgba(22, 33, 35, 0.8);
}

.auth-mode-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
  margin: 0 0 0.82rem;
  padding: 0.2rem;
  border: 1px solid rgba(22, 33, 35, 0.12);
  border-radius: 0;
  background: #f6f8f9;
}

.auth-mode-tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(22, 33, 35, 0.75);
  border-radius: 0;
  min-height: 36px;
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

.auth-mode-tab.is-active {
  background: #ffffff;
  color: #116466;
  box-shadow: 0 0 0 1px rgba(22, 33, 35, 0.12);
}

.auth-mode-tab:hover,
.auth-mode-tab:focus-visible {
  color: #0281c2;
  outline: none;
}

.auth-form {
  display: grid;
  gap: 0.56rem;
}

.auth-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
}

.auth-form input {
  width: 100%;
  border: 1px solid rgba(22, 33, 35, 0.2);
  border-radius: 0;
  min-height: 42px;
  font: inherit;
  padding: 0.62rem 0.74rem;
}

.auth-password-field {
  position: relative;
  display: flex;
  align-items: center;
}

.auth-password-field input {
  padding-right: 2.5rem;
}

.auth-password-toggle {
  position: absolute;
  right: 0.34rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: rgba(22, 33, 35, 0.72);
  width: 1.9rem;
  height: 1.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.auth-password-toggle-icon {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.auth-password-toggle:hover,
.auth-password-toggle:focus-visible {
  color: #0281c2;
  outline: none;
}

.auth-form-inline-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.auth-checkbox-label {
  display: inline-flex !important;
  align-items: center;
  gap: 0.38rem;
  margin: 0;
  font-size: 0.82rem;
  color: rgba(22, 33, 35, 0.9);
}

.auth-checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 0;
  accent-color: #116466;
  padding: 0;
}

.auth-submit {
  margin-top: 0.3rem;
  border: 0;
  border-radius: 12px;
  min-height: 34px;
  min-width: 56px;
  padding: 0 0.72rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #011d36;
  color: #e1e1e1;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.16s ease, transform 0.12s ease, box-shadow 0.16s ease;
}

#globalLoginSubmit,
#globalSignupSubmit {
  justify-self: end;
  width: auto;
  min-width: 0;
  padding-inline: 0.58rem;
}

.auth-submit:hover {
  background: #0281c2;
  transform: none;
  box-shadow: none;
  outline: none;
}

.auth-submit:focus-visible {
  border: 0;
  background: #0281c2;
  color: #e1e1e1;
  transform: none;
  box-shadow: 0 0 0 2px var(--hover-blue-soft);
  outline: none;
}

.auth-signup-legal-note {
  margin: 0.2rem 0 0;
  font-size: 9px;
  line-height: 1.35;
  color: rgba(22, 33, 35, 0.72);
}

.auth-inline-link {
  margin: 0.45rem 0 0;
  border: 0;
  background: transparent;
  color: #116466;
  font: inherit;
  font-size: 0.86rem;
  text-decoration: underline;
  text-underline-offset: 0.14em;
  text-align: left;
  padding: 0;
  cursor: pointer;
}

.auth-inline-link-compact {
  margin-top: 0;
  font-size: 0.82rem;
}

.auth-inline-link:hover,
.auth-inline-link:focus-visible {
  color: #0281c2;
  outline: none;
}

.auth-message {
  margin: 0.82rem 0 0;
  min-height: 1.2em;
  font-size: 0.88rem;
  color: #116466;
}

.auth-message-error {
  color: #c63a20;
}

.eyebrow {
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-size: 0.73rem;
  font-weight: 400;
  color: var(--olive);
  margin: 0;
}

h1,
h3,
h4 {
  font-family: inherit;
  font-weight: 400;
  margin: 0;
}

h1 {
  margin-top: 0.7rem;
  font-size: clamp(2rem, 5vw, 3.7rem);
  max-width: 16ch;
  line-height: 1.05;
}

.subline {
  max-width: 56ch;
  font-size: 1.07rem;
  margin: 1rem 0 1.65rem;
}

.search-panel {
  display: grid;
  grid-template-columns: 1fr 220px auto;
  gap: 0.9rem;
  align-items: end;
}

.field {
  display: grid;
  gap: 0.5rem;
  font-weight: 400;
  font-size: 0.86rem;
}

.field input,
.field select {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 14px;
  min-height: 50px;
  font: inherit;
  padding: 0.8rem 0.95rem;
}

main {
  padding-bottom: 2rem;
}

main > * {
  margin-inline-start: var(--header-line-start);
}

.content-page-shell {
  display: grid;
  gap: 1rem;
}

.content-page-hero {
  padding: 0.45rem 0 0.2rem;
}

.content-page-hero[hidden] {
  display: none !important;
}

.content-page-kicker {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(1, 29, 54, 0.68);
}

.content-page-hero h1 {
  margin-top: 0.42rem;
  font-size: clamp(1rem, 2.5vw, 1.85rem);
  font-weight: 700;
  max-width: 14ch;
}

.content-page-hero .subline {
  max-width: 60ch;
  font-size: 0.93rem;
  margin-bottom: 0;
}

.content-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

.content-page-grid[hidden] {
  display: none !important;
}

.content-page-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

a.content-page-card:hover,
a.content-page-card:focus-visible {
  opacity: 0.82;
  transform: translateY(-1px);
  outline: none;
}

.content-page-card h2 {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
  line-height: 1.2;
  color: #011d36;
}

.content-page-card p {
  margin: 0.5rem 0 0;
  font-size: 0.93rem;
  color: rgba(22, 33, 35, 0.84);
}

.content-page-shell[data-page-key="donusturme"] .content-page-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
  max-width: 620px;
}

.content-page-shell[data-page-key="donusturme"] .content-page-card {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(164, 179, 181, 0.82);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.42rem 0.5rem;
  min-height: 52px;
  box-shadow: none;
  text-align: center;
  color: #011d36;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.content-page-shell[data-page-key="donusturme"] a.content-page-card:hover,
.content-page-shell[data-page-key="donusturme"] a.content-page-card:focus-visible {
  opacity: 1;
  border-color: var(--box-border);
  box-shadow: 0 0 0 2px var(--box-hover-soft);
  color: var(--link-hover);
  transform: translateY(-1px);
  text-decoration: none;
  outline: none;
}

.content-page-shell[data-page-key="donusturme"] .content-page-card h2 {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.15;
  font-weight: 700;
}

.content-page-list {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
  color: rgba(22, 33, 35, 0.84);
}

.content-page-list li {
  font-size: 0.9rem;
}

.content-page-strip {
  border: 1px solid rgba(2, 129, 194, 0.18);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(1, 29, 54, 0.95), rgba(2, 129, 194, 0.92));
  color: #ffffff;
  padding: 1rem 1.1rem 1.05rem;
}

.content-page-strip[hidden] {
  display: none !important;
}

.content-page-strip h2 {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.2;
}

.content-page-strip p {
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
}

.content-page-form-shell {
  display: flex;
}

.content-page-form-shell[hidden] {
  display: none !important;
}

.content-page-form-card {
  border: 1px solid rgba(1, 29, 54, 0.12);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.88);
  padding: 1.1rem;
  width: 100%;
  max-width: min(100%, calc(50% - 0.7rem));
}

.content-page-form-card h2 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
  color: #011d36;
}

.content-page-form-card > p {
  margin: 0.5rem 0 0;
  font-size: 0.92rem;
  color: rgba(22, 33, 35, 0.82);
}

.content-page-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.95rem;
}

.content-page-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.content-page-field {
  display: grid;
  gap: 0.35rem;
}

.content-page-field[data-span="full"] {
  grid-column: 1 / -1;
}

.content-page-field span {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(1, 29, 54, 0.8);
}

.content-page-field input,
.content-page-field select,
.content-page-field textarea {
  width: 100%;
  border: 1px solid rgba(1, 29, 54, 0.14);
  border-radius: 16px;
  background: #ffffff;
  padding: 0.78rem 0.9rem;
  font: inherit;
  color: #162123;
}

.content-page-field select {
  appearance: none;
  min-height: 62px;
  border-radius: 20px;
  border-color: rgba(1, 29, 54, 0.08);
  background-color: #edf0f3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23606c77' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  background-size: 12px 8px;
  padding: 1.05rem 3rem 1.05rem 1.05rem;
  font-size: 0.97rem;
  font-weight: 500;
  line-height: 1.2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.content-page-field select[data-empty="true"] {
  color: rgba(22, 33, 35, 0.54);
}

.content-page-field select[data-empty="false"] {
  background-color: #ffffff;
  color: #162123;
  border-color: rgba(1, 29, 54, 0.12);
}

.content-page-field select:focus,
.content-page-field select:active {
  background-color: #ffffff;
  box-shadow:
    0 0 0 3px rgba(2, 129, 194, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.content-page-field select:disabled {
  background-color: #edf0f3;
  color: rgba(22, 33, 35, 0.56);
  cursor: not-allowed;
}

.content-page-field textarea {
  min-height: 108px;
  resize: vertical;
}

.content-page-field input:focus,
.content-page-field select:focus,
.content-page-field textarea:focus {
  outline: 2px solid rgba(2, 129, 194, 0.18);
  border-color: rgba(2, 129, 194, 0.4);
}

.content-page-form-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.content-page-form-button {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #011d36, #0281c2);
  color: #ffffff;
  padding: 0.78rem 1.1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.content-page-form-note {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(22, 33, 35, 0.7);
}

.content-page-form-status {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(22, 33, 35, 0.82);
}

.content-page-form-status[data-state="success"] {
  color: #0b6b4f;
}

.content-page-form-status[data-state="error"] {
  color: #8a2d1b;
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-form-card {
  position: relative;
  border: 0;
  border-radius: 4px;
  background: var(--paper);
  margin-top: 3.2rem;
  padding: 0.55rem;
  box-shadow: none;
  max-width: min(100%, 520px);
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-form-card h2,
.content-page-shell[data-page-key="yer-ekle"] .content-page-form-card > p,
.content-page-shell[data-page-key="yer-ekle"] .content-page-form-status,
.content-page-shell[data-page-key="iletisim"] .content-page-form-card h2,
.content-page-shell[data-page-key="iletisim"] .content-page-form-card > p,
.content-page-shell[data-page-key="iletisim"] .content-page-form-status {
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--box-text);
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-form-card h2 {
  position: absolute;
  left: 0;
  bottom: 100%;
  margin: 0 0 1.45rem;
  padding: 0;
  background: transparent;
  font-size: clamp(1rem, 2.5vw, 1.85rem);
  font-weight: 700;
  line-height: 1.05;
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-form {
  margin-top: 0.55rem;
  gap: 0.62rem;
}

.content-page-shell[data-page-key="iletisim"] .content-page-form-card {
  position: relative;
  border: 0;
  border-radius: 4px;
  background: var(--paper);
  margin-top: 0.55rem;
  padding: 0.55rem;
  box-shadow: none;
  max-width: min(100%, 520px);
}

.content-page-shell[data-page-key="iletisim"] .content-page-form-card h2 {
  position: absolute;
  left: 0;
  bottom: 100%;
  margin: 0 0 1.2rem;
  padding: 0;
  background: transparent;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.content-page-shell[data-page-key="iletisim"] .content-page-form {
  margin-top: 0.55rem;
  gap: 0.62rem;
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-form-actions {
  justify-content: flex-end;
}

.content-page-shell[data-page-key="iletisim"] .content-page-form-actions {
  justify-content: flex-end;
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-form-grid {
  gap: 0.5rem;
}

.content-page-shell[data-page-key="iletisim"] .content-page-form-grid {
  gap: 0.5rem;
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-field input,
.content-page-shell[data-page-key="yer-ekle"] .content-page-field select,
.content-page-shell[data-page-key="yer-ekle"] .content-page-field textarea,
.content-page-shell[data-page-key="iletisim"] .content-page-field input,
.content-page-shell[data-page-key="iletisim"] .content-page-field select,
.content-page-shell[data-page-key="iletisim"] .content-page-field textarea {
  min-height: 42px;
  border: 1px solid var(--box-border);
  border-radius: 4px;
  background: var(--paper);
  padding: 0.62rem 0.74rem;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--box-text);
  box-shadow: none;
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-phone-group,
.content-page-shell[data-page-key="iletisim"] .content-page-phone-group {
  display: grid;
  grid-template-columns: 58px 86px minmax(0, 1fr);
  gap: 0.5rem;
  width: 100%;
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-phone-prefix,
.content-page-shell[data-page-key="iletisim"] .content-page-phone-prefix {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--box-border);
  border-radius: 4px;
  background: var(--paper);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--box-text);
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-phone-group input,
.content-page-shell[data-page-key="iletisim"] .content-page-phone-group input {
  min-width: 0;
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-field textarea {
  min-height: 96px;
}

.content-page-shell[data-page-key="iletisim"] .content-page-field textarea {
  min-height: 132px;
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-field input::placeholder,
.content-page-shell[data-page-key="yer-ekle"] .content-page-field textarea::placeholder,
.content-page-shell[data-page-key="iletisim"] .content-page-field input::placeholder,
.content-page-shell[data-page-key="iletisim"] .content-page-field textarea::placeholder {
  color: rgba(22, 33, 35, 0.58);
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-field select {
  min-height: 42px;
  border-radius: 4px;
  border-color: var(--box-border);
  background-color: var(--paper);
  background-position: right 0.74rem center;
  background-size: 10px 6px;
  padding: 0.62rem 2rem 0.62rem 0.74rem;
  font-size: 0.92rem;
  font-weight: 400;
  box-shadow: none;
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-field select[data-empty="true"] {
  color: rgba(22, 33, 35, 0.58);
  background-color: var(--paper);
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-field select[data-empty="false"] {
  color: var(--box-text);
  background-color: var(--paper);
  border-color: var(--box-border);
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-field select:disabled {
  background-color: var(--paper);
  color: rgba(22, 33, 35, 0.46);
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-field input:focus,
.content-page-shell[data-page-key="yer-ekle"] .content-page-field select:focus,
.content-page-shell[data-page-key="yer-ekle"] .content-page-field textarea:focus,
.content-page-shell[data-page-key="iletisim"] .content-page-field input:focus,
.content-page-shell[data-page-key="iletisim"] .content-page-field select:focus,
.content-page-shell[data-page-key="iletisim"] .content-page-field textarea:focus {
  outline: none;
  border-color: var(--box-border);
  box-shadow: 0 0 0 2px var(--box-hover-soft);
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-form-button {
  min-height: 34px;
  border-radius: 12px;
  background: #011d36;
  color: #e1e1e1;
  padding: 0 0.72rem;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1;
}

.content-page-shell[data-page-key="iletisim"] .content-page-form-button {
  min-height: 34px;
  border-radius: 12px;
  background: #011d36;
  color: #e1e1e1;
  padding: 0 0.72rem;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1;
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-form-button:hover {
  background: #384796;
  box-shadow: none;
}

.content-page-shell[data-page-key="iletisim"] .content-page-form-button:hover {
  background: #384796;
  box-shadow: none;
}

.content-page-shell[data-page-key="yer-ekle"] .content-page-form-button:focus-visible {
  background: #022746;
  box-shadow: 0 0 0 2px var(--hover-blue-soft);
  outline: none;
}

.content-page-shell[data-page-key="iletisim"] .content-page-form-button:focus-visible {
  background: #022746;
  box-shadow: 0 0 0 2px var(--hover-blue-soft);
  outline: none;
}

.content-page-shell[data-page-key="sss"] .content-page-form-card {
  border: 1px solid rgba(1, 29, 54, 0.12);
  border-radius: 4px;
  background: rgba(255, 253, 248, 0.88);
  padding: 0.7rem;
  width: 100%;
  max-width: 100%;
}

.content-page-shell[data-page-key="sss"] .content-page-form-card h2 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
  color: #011d36;
}

.content-page-shell[data-page-key="sss"] .content-page-form {
  margin-top: 0.7rem;
  gap: 0.7rem;
}

.dictionary-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.dictionary-results {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.8rem;
}

.dictionary-helper {
  margin: 0.55rem 0 0;
  color: rgba(1, 29, 54, 0.68);
  font-size: 0.9rem;
}

.dictionary-open-link {
  text-decoration: none;
}

.dictionary-embed-shell {
  margin-top: 0.8rem;
  border: 1px solid rgba(1, 29, 54, 0.12);
  border-radius: 4px;
  overflow: hidden;
  background: #ffffff;
  min-height: 74vh;
}

.dictionary-embed-frame {
  display: block;
  width: 100%;
  min-height: 74vh;
  border: 0;
  background: #ffffff;
}

.dictionary-summary-card,
.dictionary-meaning-card {
  border: 1px solid rgba(1, 29, 54, 0.12);
  border-radius: 4px;
  background: #ffffff;
  padding: 0.85rem 0.95rem;
}

.dictionary-word-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.dictionary-word {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.15;
  color: #011d36;
}

.dictionary-translation-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 0.72rem;
  border: 1px solid #cfd7df;
  border-radius: 999px;
  background: #f4f7fa;
  color: #2f4858;
  font-size: 0.84rem;
  font-weight: 600;
}

.dictionary-phonetic {
  margin: 0.45rem 0 0;
  color: rgba(1, 29, 54, 0.72);
  font-size: 0.92rem;
}

.dictionary-meaning-title {
  margin: 0;
  font-size: 0.96rem;
  color: #011d36;
}

.dictionary-definition-list {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
}

.dictionary-definition-item + .dictionary-definition-item {
  margin-top: 0.55rem;
}

.dictionary-definition-text {
  margin: 0;
  color: #1f2d35;
}

.dictionary-definition-example {
  margin: 0.26rem 0 0;
  color: rgba(31, 45, 53, 0.74);
  font-size: 0.9rem;
  font-style: italic;
}

.dictionary-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.6rem;
}

@media (max-width: 620px) {
  .content-page-shell[data-page-key="yer-ekle"] .content-page-phone-group,
  .content-page-shell[data-page-key="iletisim"] .content-page-phone-group {
    grid-template-columns: 52px 76px minmax(0, 1fr);
    gap: 0.4rem;
  }

  .dictionary-toolbar {
    justify-content: stretch;
  }

  .dictionary-toolbar .content-page-form-button {
    width: 100%;
  }
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 2.6rem;
}

.summary-grid article {
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
}

.summary-grid h2 {
  margin: 0;
  font-family: inherit;
  font-weight: 400;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--accent-strong);
}

.summary-grid p {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
}

.category-explorer {
  margin-bottom: 2.6rem;
}

.hero .category-explorer {
  margin-bottom: 1.2rem;
}

.category-search-wrap {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.95rem;
  font-size: 0.84rem;
  font-weight: 400;
}

.category-search-wrap input {
  min-height: 54px;
  border-radius: 10px;
  border: 1px solid rgba(22, 33, 35, 0.18);
  padding: 0.9rem 1rem;
  font: inherit;
  background: #ffffff;
}

.category-card-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.category-card {
  appearance: none;
  text-align: left;
  position: relative;
  border: 1px solid var(--box-border);
  border-radius: 12px;
  min-height: 152px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  cursor: pointer;
  padding: 0.78rem;
  display: flex;
  align-items: end;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.14) 0%,
    rgba(0, 0, 0, 0.55) 70%,
    rgba(0, 0, 0, 0.72) 100%
  );
  transition: background 0.18s ease;
}

.category-card:hover {
  border-color: var(--box-border);
  box-shadow: 0 0 0 2px var(--box-hover-soft);
  transform: translateY(-2px);
}

.category-card:hover::before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.14) 0%,
    rgba(0, 0, 0, 0.55) 70%,
    rgba(0, 0, 0, 0.72) 100%
  );
}

.category-card-content {
  position: relative;
  z-index: 1;
  color: var(--box-text);
}

.category-card:hover .category-card-content {
  color: var(--box-hover-text);
}

.category-card-content h4 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.08;
}

.category-card-content p {
  margin: 0.28rem 0 0;
  font-size: 0.93rem;
  font-weight: 400;
}

.category-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.category-chip {
  border: 1px solid var(--box-border);
  border-radius: 4px;
  background: inherit;
  color: var(--box-text);
  padding: 0.3rem 0.66rem;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  transition: border-color 0.16s ease, color 0.16s ease, background-color 0.16s ease;
}

.category-chip:hover,
.category-chip.active {
  border-color: var(--box-border);
  color: var(--box-hover-text);
}

.category-empty {
  border: 1px dashed var(--box-border);
  border-radius: 12px;
  padding: 0.82rem;
  background: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--box-text);
}

.section-head {
  margin-bottom: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.section-head h3 {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  margin-top: 0.35rem;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 0.9rem;
  margin-bottom: 2.8rem;
}

.venue-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.83), rgba(255, 243, 224, 0.76));
  border: 1px solid var(--box-border);
  border-radius: var(--radius);
  color: var(--box-text);
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
  min-height: 190px;
  opacity: 0;
  transform: translateY(14px);
  animation: cardRise 0.45s ease forwards;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.venue-card:hover {
  border-color: var(--box-border);
  box-shadow: 0 0 0 2px var(--box-hover-soft);
  color: var(--box-hover-text);
  transform: translateY(-2px);
}

.venue-card header,
.venue-card footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.55rem;
}

.chip {
  border-radius: 999px;
  font-size: 0.73rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.24rem 0.66rem;
  border: 1px solid rgba(63, 91, 61, 0.35);
  background: rgba(63, 91, 61, 0.14);
  color: var(--olive);
}

.city {
  font-size: 0.84rem;
  color: var(--box-text);
}

.venue-card h4 {
  font-size: 1.14rem;
}

.venue-name-link {
  color: inherit;
  text-decoration: none;
}

.venue-name-link:hover,
.venue-name-link:focus-visible {
  color: var(--box-hover-text);
  text-decoration: none;
  outline: none;
}

.meta {
  margin: 0;
  font-size: 0.95rem;
}

.rating {
  color: var(--box-text);
  font-weight: 400;
}

.budget {
  font-size: 0.86rem;
  padding: 0.2rem 0.58rem;
  border-radius: 999px;
  border: 1px solid var(--box-border);
  color: var(--box-text);
  margin-left: auto;
}

.venue-card:hover .city,
.venue-card:hover .rating,
.venue-card:hover .budget {
  color: var(--box-hover-text);
}

.mini-btn {
  border: 1px solid var(--box-border);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.95);
  color: var(--box-text);
  font: inherit;
  font-size: 0.74rem;
  font-weight: 400;
  padding: 0.3rem 0.62rem;
  cursor: pointer;
}

.mini-btn:hover {
  border-color: var(--box-border);
  color: var(--box-hover-text);
}

.province-head {
  align-items: start;
}

.province-help {
  margin: 0;
  max-width: 30ch;
  font-size: 0.92rem;
}

.home-page .province-head h3 {
  margin-bottom: 0.42rem;
}

.home-page .province-help {
  margin-top: 0.12rem;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.38;
}

.home-page .section-head.province-head {
  margin-bottom: 1.32rem;
}

.home-page .section-head.province-head > div {
  min-width: 0;
  max-width: 100%;
}

.bank-total {
  margin-bottom: 0.32rem;
}

.bank-source-note {
  max-width: none;
  margin-bottom: 0.9rem;
  font-size: 0.88rem;
}

.bank-pill {
  cursor: default;
}

.market-pill {
  cursor: pointer;
}

.hospital-pill {
  cursor: pointer;
}

.veteriner-pill {
  cursor: pointer;
}

.kuafor-pill {
  cursor: pointer;
}

.yemek-pill {
  cursor: pointer;
}

.province-pill.bank-pill-link,
.province-pill.bank-pill-link:visited,
.province-pill.market-pill-link,
.province-pill.market-pill-link:visited,
.province-pill.hospital-pill-link,
.province-pill.hospital-pill-link:visited,
.province-pill.veteriner-pill-link,
.province-pill.veteriner-pill-link:visited,
.province-pill.kuafor-pill-link,
.province-pill.kuafor-pill-link:visited,
.province-pill.yemek-pill-link,
.province-pill.yemek-pill-link:visited {
  color: var(--box-text);
  text-decoration: none;
}

.province-pill.bank-pill-link:hover,
.province-pill.bank-pill-link:focus-visible,
.province-pill.market-pill-link:hover,
.province-pill.market-pill-link:focus-visible,
.province-pill.hospital-pill-link:hover,
.province-pill.hospital-pill-link:focus-visible,
.province-pill.veteriner-pill-link:hover,
.province-pill.veteriner-pill-link:focus-visible,
.province-pill.kuafor-pill-link:hover,
.province-pill.kuafor-pill-link:focus-visible,
.province-pill.yemek-pill-link:hover,
.province-pill.yemek-pill-link:focus-visible {
  color: var(--box-hover-text);
  text-decoration: none;
}

.featured-venue-pill.is-one-star {
  border-color: #2f6fd6;
  box-shadow: inset 0 0 0 1px rgba(47, 111, 214, 0.16);
}

.featured-venue-pill.is-two-star {
  border-color: #cf3b32;
  box-shadow: inset 0 0 0 1px rgba(207, 59, 50, 0.16);
}

.province-grid {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.nearby-action-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  margin-bottom: 0.5rem;
}

.nearby-action-title {
  margin: 0;
  font-size: clamp(1rem, 2.1vw, 1.16rem);
  line-height: 1.2;
  color: #132428;
}

.nearby-action-description {
  margin: 0.35rem 0 0;
  color: rgba(22, 33, 35, 0.8);
  font-size: 0.9rem;
  line-height: 1.42;
}

.nearby-action-row {
  margin-top: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.56rem;
  flex-wrap: wrap;
}

.nearby-action-btn {
  border: 0;
  border-radius: 4px;
  background: #011d36;
  color: #e1e1e1;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1;
  min-height: 42px;
  min-width: 92px;
  padding: 0 1rem;
  cursor: pointer;
  transition: background-color 0.16s ease, transform 0.12s ease, box-shadow 0.16s ease;
}

.nearby-action-btn:hover,
.nearby-action-btn:focus-visible {
  background: #384796;
  box-shadow: none;
  outline: none;
  transform: none;
}

.nearby-action-btn:focus-visible {
  border: 0;
  background: #022746;
  color: #e1e1e1;
  transform: translateY(-1px);
  box-shadow: 0 0 0 2px var(--hover-blue-soft);
  outline: none;
}

.nearby-action-btn:disabled {
  opacity: 0.74;
  cursor: progress;
  transform: none;
}

.nearby-action-status {
  margin: 0.5rem 0 0;
  min-height: 1.2rem;
  font-size: 0.82rem;
  color: rgba(22, 33, 35, 0.78);
}

.top-city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
  margin-bottom: 0.95rem;
}

.home-top-category-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(178px, 1fr);
  grid-template-columns: none;
  align-items: stretch;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding-bottom: 0.1rem;
  scrollbar-width: none;
}

.home-top-category-row::-webkit-scrollbar {
  display: none;
}

.home-launch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  align-items: start;
}

.home-launch-card {
  border: 1px solid rgba(164, 179, 181, 0.82);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94)),
    #ffffff;
  padding: 1rem;
  box-shadow: 0 14px 28px rgba(9, 25, 39, 0.05);
}

.home-launch-card-location {
  min-height: 100%;
}

.home-launch-card-info {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 251, 0.96)),
    #ffffff;
}

.home-launch-head {
  display: grid;
  gap: 0.38rem;
  margin-bottom: 0.9rem;
}

.home-launch-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 1.7rem;
  padding: 0.18rem 0.56rem;
  border: 1px solid rgba(164, 179, 181, 0.72);
  border-radius: 4px;
  background: rgba(248, 251, 253, 0.88);
  color: #011d36;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-launch-head h4 {
  margin: 0;
  font-size: clamp(1.24rem, 1.9vw, 1.78rem);
  font-weight: 700;
  line-height: 1.08;
  color: #011d36;
}

.home-launch-head p {
  margin: 0;
  max-width: 52ch;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(1, 29, 54, 0.74);
}

.home-launch-card .top-city-grid {
  margin-bottom: 0;
}

.home-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
}

.home-info-link,
.home-info-link:visited {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  padding: 0.35rem;
  border: 1px solid var(--box-border);
  border-radius: 4px;
  background: inherit;
  color: var(--box-text);
  text-align: center;
  text-decoration: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.home-info-link strong {
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1;
}

.home-info-link-thumb {
  display: none;
}

.home-info-link-translation,
.home-info-link-translation:visited {
  display: grid;
  grid-template-columns: 66px 1fr;
  align-items: center;
  gap: 0.58rem;
  padding: 0.35rem;
  border-color: #bfc4ca;
}

.home-info-link-translation .home-info-link-thumb {
  display: block;
  width: 66px;
  height: 66px;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  border: 1px solid #d1d1d1;
}

.home-info-link-conversion .home-info-link-thumb {
  background-size: 80%;
  background-repeat: no-repeat;
}

.home-info-link span {
  display: none;
}

.home-info-link:hover,
.home-info-link:focus-visible {
  border-color: var(--box-border);
  box-shadow: 0 0 0 2px var(--box-hover-soft);
  color: var(--box-hover-text);
  text-decoration: none;
  outline: none;
}

.home-info-link:hover span,
.home-info-link:focus-visible span {
  color: inherit;
}

.home-info-link-translation:hover,
.home-info-link-translation:focus-visible {
  border-color: #bfc4ca;
}

.top-city-card {
  appearance: none;
  border: 1px solid var(--box-border);
  border-radius: 4px;
  background: inherit;
  color: var(--box-text);
  text-align: left;
  min-height: 78px;
  padding: 0.35rem;
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 0.58rem;
  align-items: center;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.top-city-thumb {
  width: 66px;
  height: 66px;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
}

.top-city-content {
  display: grid;
  gap: 0.12rem;
}

.top-city-name {
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1;
}

.top-city-meta {
  font-size: 0.76rem;
  color: var(--box-text);
}

.top-city-population {
  font-size: 0.92rem;
  color: var(--box-text);
}

.top-city-card:hover,
.top-city-card.active {
  border-color: var(--box-border);
  box-shadow: 0 0 0 2px var(--box-hover-soft);
  color: var(--box-hover-text);
}

.top-city-card:hover .top-city-population,
.top-city-card.active .top-city-population {
  color: var(--box-hover-text);
}

.category-home-card,
.category-home-card:visited {
  color: var(--link-base);
  text-decoration: none;
}

.category-home-card:hover,
.category-home-card:focus-visible {
  color: var(--link-hover);
  text-decoration: none;
}

.category-home-card .top-city-content {
  gap: 0;
}

.category-home-card:hover .top-city-meta,
.category-home-card:focus-visible .top-city-meta {
  color: var(--link-hover);
}

.category-home-card .top-city-population {
  display: none;
}

.category-home-card.is-disabled {
  border-style: dashed;
  background: #f1f1f1;
  opacity: 0.76;
  cursor: not-allowed;
}

.category-home-card.is-disabled:hover,
.category-home-card.is-disabled:focus-visible {
  border-color: rgba(22, 33, 35, 0.18);
  box-shadow: none;
  background: #f1f1f1;
}

.home-image-marquee {
  margin: 0;
  margin-inline-start: var(--header-line-start);
  margin-bottom: 0.74rem;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.2));
}

.home-landing-marquee {
  width: 100vw;
  margin-top: 1.35rem;
  margin-right: calc(50% - 50vw);
  margin-bottom: 0.9rem;
  margin-left: calc(50% - 50vw);
}

.home-landing-marquee .home-image-marquee-track {
  animation-duration: 48s;
}

.home-landing-marquee:hover .home-image-marquee-track,
.home-landing-marquee:focus-within .home-image-marquee-track {
  animation-play-state: running;
}

.home-image-marquee-track {
  display: flex;
  width: max-content;
  animation: homeImageMarqueeScroll 34s linear infinite;
  will-change: transform;
}

.home-image-marquee-strip {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
}

.home-image-marquee-item {
  width: 136px;
  height: 78px;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 0;
  background: #e7ebee;
}

.home-image-marquee:hover .home-image-marquee-track,
.home-image-marquee:focus-within .home-image-marquee-track {
  animation-play-state: paused;
}

.home-landing-marquee:hover .home-image-marquee-track,
.home-landing-marquee:focus-within .home-image-marquee-track {
  animation-play-state: running !important;
}

@keyframes homeImageMarqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% / 3));
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-image-marquee-track {
    animation: none;
  }
}

.district-filter-wrap {
  display: grid;
  gap: 0.35rem;
  max-width: 280px;
  margin-bottom: 1.85rem;
}

.district-filter-label {
  font-size: 0.82rem;
  color: rgba(22, 33, 35, 0.84);
}

.district-filter-select {
  appearance: none;
  border: 1px solid var(--box-border);
  border-radius: 8px;
  background: inherit;
  color: var(--box-text);
  min-height: 38px;
  padding: 0.38rem 2rem 0.38rem 0.62rem;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(22, 33, 35, 0.65) 50%),
    linear-gradient(135deg, rgba(22, 33, 35, 0.65) 50%, transparent 50%);
  background-position:
    calc(100% - 14px) calc(50% - 2px),
    calc(100% - 9px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.district-filter-select:hover,
.district-filter-select:focus-visible {
  border-color: var(--box-border);
  box-shadow: 0 0 0 2px var(--box-hover-soft);
  color: var(--box-hover-text);
  outline: none;
}

.province-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: start;
  gap: 0.9rem;
  padding: 0.35rem 0;
}

.province-region {
  margin: 0;
  font-family: inherit;
  font-weight: 400;
  font-size: 1.12rem;
  color: var(--ink);
}

.province-region-title {
  display: block;
}

.province-region-meta {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.92rem;
  line-height: 1.2;
  color: rgba(22, 33, 35, 0.82);
  white-space: nowrap;
}

.province-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.province-ad-slot {
  flex: 1 1 100%;
  border: 1px solid rgba(22, 33, 35, 0.14);
  border-radius: 4px;
  background: rgba(245, 249, 253, 0.78);
  padding: 0.44rem 0.52rem 0.5rem;
}

.province-ad-label {
  display: inline-block;
  margin: 0 0 0.35rem;
  font-size: 0.74rem;
  line-height: 1;
  color: rgba(22, 33, 35, 0.66);
  letter-spacing: 0.01em;
}

.province-ad-slot-body {
  min-height: 110px;
}

.province-adsense-unit {
  width: 100%;
  min-height: 102px;
}

.city-detail {
  border-radius: 30px;
  border: 1px solid var(--box-border);
  background: linear-gradient(145deg, rgba(255, 253, 248, 0.95), rgba(226, 242, 232, 0.72));
  padding: clamp(1.1rem, 2.4vw, 2rem);
  margin-bottom: 2.3rem;
}

.is-hidden {
  display: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.city-detail-head {
  margin-bottom: 1.1rem;
}

.city-detail-head h3 {
  margin-top: 0.35rem;
}

.city-summary {
  margin: 0.65rem 0 0;
  max-width: 65ch;
}

.city-detail-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
  margin-bottom: 0.95rem;
}

.city-detail-stats article {
  border-radius: 16px;
  border: 1px solid var(--box-border);
  background: rgba(255, 255, 255, 0.58);
  padding: 0.8rem 0.85rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.city-detail-stats article:hover {
  border-color: var(--box-border);
  box-shadow: 0 0 0 2px var(--box-hover-soft);
}

.city-detail-stats h4 {
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  color: var(--accent-strong);
}

.city-detail-stats p {
  margin: 0.2rem 0 0;
  font-size: 0.84rem;
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
}

.city-tag {
  border: 1px solid rgba(22, 33, 35, 0.15);
  border-radius: 999px;
  padding: 0.3rem 0.62rem;
  font-size: 0.79rem;
  background: rgba(255, 255, 255, 0.72);
}

.city-share-link {
  color: var(--link-base);
  font-size: 0.9rem;
  font-weight: 400;
}

.province-pill {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--box-border);
  border-radius: 4px;
  background: inherit;
  color: var(--box-text);
  padding: 0.3rem 0.66rem;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  display: inline-block;
  transition: all 0.18s ease;
}

.province-pill:hover,
.province-pill.active {
  border-color: var(--box-border);
  color: var(--box-hover-text);
}

body.map-focus-open {
  overflow: hidden;
}

body.search-choice-open {
  overflow: hidden;
}

.search-choice-modal {
  position: fixed;
  inset: 0;
  z-index: 1650;
  display: grid;
  place-items: center;
  padding: clamp(0.8rem, 2vw, 1.2rem);
}

.search-choice-modal[hidden] {
  display: none !important;
}

.search-choice-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: rgba(8, 14, 18, 0.5);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.search-choice-panel {
  position: relative;
  width: min(520px, 100%);
  max-height: min(76vh, 720px);
  border: 1px solid var(--box-border);
  border-radius: 18px;
  background: #fffdf8;
  box-shadow: 0 24px 70px rgba(10, 18, 26, 0.24);
  padding: 1rem;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.search-choice-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.search-choice-head-text {
  display: grid;
  gap: 0.22rem;
}

.search-choice-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #011d36;
}

.search-choice-text,
.search-choice-note {
  margin: 0;
  font-size: 0.84rem;
  color: rgba(22, 33, 35, 0.76);
}

.search-choice-close {
  border: 0;
  background: transparent;
  color: #011d36;
  font: inherit;
  font-size: 0.84rem;
  padding: 0.18rem 0.24rem;
  cursor: pointer;
}

.search-choice-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.9rem;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 0.2rem;
  scrollbar-width: thin;
}

.search-choice-option {
  width: 100%;
  border: 1px solid var(--box-border);
  border-radius: 12px;
  background: #ffffff;
  padding: 0.72rem 0.78rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.16s ease, background-color 0.16s ease;
}

.search-choice-option:hover,
.search-choice-option:focus-visible {
  border-color: #384796;
  background: #f7f8fd;
  outline: none;
}

.search-choice-option-title,
.search-choice-option-meta {
  display: block;
}

.search-choice-option-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #011d36;
}

.search-choice-option-meta {
  margin-top: 0.24rem;
  font-size: 0.79rem;
  color: rgba(22, 33, 35, 0.7);
}

.search-choice-note {
  margin-top: 0.85rem;
}

.map-focus-modal {
  position: fixed;
  inset: 0;
  z-index: 1800;
  display: grid;
  place-items: center;
  padding: clamp(0.8rem, 2.2vw, 1.4rem);
}

.map-focus-modal[hidden] {
  display: none !important;
}

.map-focus-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: rgba(8, 14, 18, 0.56);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.map-focus-panel {
  position: relative;
  width: min(980px, 100%);
  max-height: min(88vh, 860px);
  border: 1px solid var(--box-border);
  border-radius: 18px;
  background: #fffdf8;
  box-shadow: 0 24px 70px rgba(10, 18, 26, 0.28);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.map-focus-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.95rem 1rem 0.65rem;
}

.map-focus-head-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.map-focus-eyebrow {
  margin: 0 0 0.16rem;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(22, 33, 35, 0.66);
}

.map-focus-title {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  line-height: 1.22;
  color: #142126;
}

.map-focus-subtitle {
  margin: 0.22rem 0 0;
  font-size: 0.84rem;
  color: rgba(22, 33, 35, 0.78);
}

.map-focus-close {
  border: 1px solid var(--box-border);
  border-radius: 999px;
  background: #fff;
  color: var(--box-text);
  min-height: 34px;
  padding: 0 0.85rem;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
}

.map-focus-close:hover,
.map-focus-close:focus-visible {
  border-color: var(--box-border);
  color: var(--box-hover-text);
  outline: none;
}

.map-focus-body {
  display: grid;
  grid-template-columns: minmax(230px, 32%) minmax(0, 68%);
  gap: 0.9rem;
  padding: 0 1rem 0.95rem;
}

.map-focus-info-card {
  border: 1px solid var(--box-border);
  border-radius: 13px;
  background: #fff;
  padding: 0.72rem 0.78rem;
  overflow: auto;
}

.map-focus-info-title {
  margin: 0 0 0.56rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(20, 33, 38, 0.94);
}

.map-focus-info-list {
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.map-focus-info-row {
  margin: 0;
  padding-bottom: 0.4rem;
  border-bottom: 1px dashed rgba(22, 33, 35, 0.12);
}

.map-focus-info-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.map-focus-info-row dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(22, 33, 35, 0.54);
  margin: 0 0 0.14rem;
}

.map-focus-info-row dd {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.35;
  color: rgba(22, 33, 35, 0.9);
  word-break: break-word;
}

.map-focus-info-photo {
  display: block;
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(22, 33, 35, 0.12);
  background: #edf1f5;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 0.46rem;
}

.map-focus-info-photo[hidden] {
  display: none !important;
}

.map-focus-info-row a {
  color: var(--box-text);
  text-decoration: none;
}

.map-focus-info-row a:hover,
.map-focus-info-row a:focus-visible {
  color: var(--box-hover-text);
  text-decoration: none;
}

.map-focus-frame-wrap {
  padding: 0;
}

.map-focus-frame {
  width: 100%;
  min-height: min(64vh, 620px);
  border: 1px solid var(--box-border);
  border-radius: 13px;
  background: #e8ecef;
}

.map-focus-external {
  border: 0;
  border-radius: 12px;
  background: #011d36;
  color: #e1e1e1;
  min-height: 34px;
  min-width: 84px;
  padding: 0 0.72rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  line-height: 1;
  text-decoration: none;
}

.map-focus-external:hover,
.map-focus-external:focus-visible {
  background: #384796;
  color: #e1e1e1;
  outline: none;
}

.nearby-venues-modal {
  position: fixed;
  inset: 0;
  z-index: 1700;
  display: grid;
  place-items: center;
  padding: clamp(0.8rem, 2.2vw, 1.4rem);
}

.nearby-venues-modal[hidden] {
  display: none !important;
}

body.nearby-venues-open {
  overflow: hidden;
}

.nearby-venues-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: rgba(6, 12, 16, 0.6);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.nearby-venues-panel {
  position: relative;
  width: min(780px, 100%);
  max-height: min(86vh, 820px);
  border: 1px solid var(--box-border);
  border-radius: 18px;
  background: #fffdf8;
  box-shadow: 0 24px 70px rgba(10, 18, 26, 0.28);
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.nearby-venues-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.95rem 1rem 0.7rem;
}

.nearby-venues-eyebrow {
  margin: 0 0 0.16rem;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(22, 33, 35, 0.64);
}

.nearby-venues-title {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  line-height: 1.2;
  color: #142126;
}

.nearby-venues-subtitle {
  margin: 0.28rem 0 0;
  font-size: 0.86rem;
  color: rgba(22, 33, 35, 0.78);
}

.nearby-venues-close {
  border: 1px solid var(--box-border);
  border-radius: 999px;
  background: #fff;
  color: var(--box-text);
  min-height: 34px;
  padding: 0 0.85rem;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
}

.nearby-venues-close:hover,
.nearby-venues-close:focus-visible {
  border-color: var(--box-border);
  color: var(--box-hover-text);
  outline: none;
}

.nearby-venues-body {
  padding: 0 1rem 1rem;
  overflow: auto;
}

.nearby-venues-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.nearby-venues-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(22, 33, 35, 0.14);
  padding: 0.66rem 0;
}

.nearby-venues-item-title {
  margin: 0;
  font-size: 0.97rem;
  color: #1a2a2d;
}

.nearby-venues-item-meta {
  margin: 0.22rem 0 0;
  font-size: 0.82rem;
  color: rgba(22, 33, 35, 0.78);
}

.nearby-venues-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.nearby-venues-item-actions {
  display: flex;
  flex: 0 0 auto;
}

.nearby-venues-preview-btn {
  border: 0;
  border-radius: 12px;
  background: #011d36;
  color: #e1e1e1;
  min-height: 34px;
  min-width: 108px;
  padding: 0 0.72rem;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.nearby-venues-preview-btn:hover,
.nearby-venues-preview-btn:focus-visible {
  background: #384796;
  color: #e1e1e1;
  outline: none;
}

@media (max-width: 860px) {
  html,
  body {
    overflow-x: hidden;
  }

  .map-focus-modal {
    padding:
      max(0.55rem, env(safe-area-inset-top, 0px))
      0.55rem
      max(0.55rem, env(safe-area-inset-bottom, 0px))
      0.55rem;
  }

  .map-focus-panel {
    max-height: calc(100vh - 1.1rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    border-radius: 14px;
  }

  .map-focus-body {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding: 0 0.8rem 0.75rem;
  }

  .map-focus-frame-wrap {
    padding: 0;
  }

  .map-focus-frame {
    min-height: min(56vh, 430px);
  }

  .map-focus-head {
    padding: 0.78rem 0.8rem 0.55rem;
  }

  .map-focus-head-actions {
    display: grid;
    gap: 0.38rem;
  }

  .nearby-venues-modal {
    padding:
      max(0.55rem, env(safe-area-inset-top, 0px))
      0.55rem
      max(0.55rem, env(safe-area-inset-bottom, 0px))
      0.55rem;
  }

  .nearby-venues-panel {
    max-height: calc(100vh - 1.1rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    border-radius: 14px;
  }

  .nearby-venues-head {
    padding: 0.78rem 0.8rem 0.62rem;
  }

  .nearby-venues-body {
    padding: 0 0.8rem 0.8rem;
  }

  .nearby-venues-item {
    padding: 0.62rem 0;
  }

  .nearby-venues-item-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .nearby-venues-item-actions {
    width: 100%;
  }

  .nearby-venues-preview-btn {
    width: 100%;
  }
}

.province-city {
  font-weight: 400;
  font-size: 0.82rem;
  line-height: 1.2;
}

.empty-state {
  grid-column: 1 / -1;
  background: rgba(255, 253, 248, 0.86);
  border-radius: var(--radius);
  border: 1px dashed rgba(22, 33, 35, 0.25);
  padding: 1.2rem;
  font-weight: 400;
}

.yr-footer {
  margin-top: auto;
  background: #011d36;
  color: rgba(235, 244, 255, 0.9);
  position: relative;
  z-index: 2;
}

.yr-footer-inner {
  width: min(1220px, calc(100% - 2.4rem));
  margin-inline: auto;
  padding: 1.8rem 0 1.1rem var(--header-line-start);
}

.yr-footer-grid {
  border-top: 1px solid rgba(171, 208, 245, 0.22);
  padding-top: 1rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1rem;
}

.yr-footer-col h4 {
  margin: 0 0 0.62rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  color: #ffffff;
}

.yr-footer-grid > .yr-footer-col:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.yr-footer-col a,
.yr-footer-col a:visited {
  display: block;
  width: fit-content;
  color: #e1e1e1;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 0.42rem;
  border-bottom: 0;
}

.yr-footer-col a:hover,
.yr-footer-col a:focus-visible {
  color: #0281c2;
  border-bottom-color: transparent;
  text-decoration: none;
  outline: none;
}

.yr-footer-col a.store-badge,
.yr-footer-col a.store-badge:hover {
  min-width: 180px;
  border-radius: 12px;
  border: 1px solid #a4b3b5;
  background: #0f1113;
  color: #ffffff !important;
  padding: 0.45rem 0.75rem;
  margin-bottom: 0.5rem;
}

.store-badge-top {
  display: block;
  font-size: 0.68rem;
  line-height: 1.1;
  opacity: 0.85;
}

.store-badge-name {
  display: block;
  font-size: 1.56rem;
  line-height: 1.05;
}

.qr-col p {
  margin: 0.45rem 0 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
}

.qr-box {
  width: 132px;
  height: 132px;
  border-radius: 16px;
  border: 1px solid rgba(22, 33, 35, 0.16);
  background:
    linear-gradient(90deg, rgba(77, 101, 118, 0.12) 50%, transparent 50%),
    linear-gradient(rgba(77, 101, 118, 0.12) 50%, transparent 50%),
    #d2e3e7;
  background-size: 18px 18px;
  display: grid;
  place-items: center;
  font-size: 1.28rem;
  color: rgba(22, 33, 35, 0.68);
}

.yr-footer-bottom {
  margin-top: 1.25rem;
  border-top: 1px solid rgba(171, 208, 245, 0.22);
  padding-top: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.yr-footer-bottom p {
  margin: 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(214, 234, 255, 0.72);
}

.yr-footer-social {
  display: flex;
  gap: 0.8rem;
}

.yr-footer-social a {
  display: inline-flex;
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 1.35rem;
  color: transparent;
  text-decoration: none;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.92;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.yr-footer-social a:hover,
.yr-footer-social a:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
  outline: none;
}

.yr-footer-social a:nth-child(1) {
  background-image: url("assets/instagram.png");
}

.yr-footer-social a:nth-child(2) {
  background-image: url("assets/x.png");
}

.yr-footer-social a:nth-child(3) {
  background-image: url("assets/facebook.png");
}

.mobile-bottom-nav {
  display: none;
}

.mobile-bottom-search {
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: calc(100% + 0.45rem);
  margin-bottom: 0;
  border: 1px solid var(--mobile-search-border);
  border-radius: 14px;
  background: var(--mobile-search-bg);
  box-shadow: 0 14px 30px rgba(2, 7, 18, 0.4);
  padding: 0.52rem;
}

.mobile-bottom-search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}

.mobile-bottom-search-input {
  min-height: 44px;
  border: 1px solid var(--mobile-search-input-border);
  border-radius: 12px;
  background: var(--mobile-search-input-bg);
  color: var(--mobile-search-input-text);
  font: inherit;
  font-size: 0.95rem;
  padding: 0.52rem 0.78rem;
}

.mobile-bottom-search-input:focus-visible {
  border-color: var(--hover-blue);
  box-shadow: 0 0 0 2px var(--hover-blue-soft);
  outline: none;
}

.mobile-bottom-search-submit {
  min-height: 44px;
  border: 1px solid var(--mobile-search-submit-border);
  border-radius: 12px;
  background: var(--mobile-search-submit-bg);
  color: var(--mobile-search-submit-text);
  min-width: 72px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
}

.mobile-bottom-nav-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.2rem;
}

.mobile-bottom-nav-btn {
  border: 0;
  border-radius: 12px;
  background: transparent;
  min-height: 60px;
  width: auto;
  justify-self: stretch;
  color: var(--mobile-nav-icon);
  padding: 0.16rem 0.08rem;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0;
  font: inherit;
  font-size: 0;
  transition: color 0.16s ease, transform 0.16s ease;
}

.mobile-bottom-nav-icon {
  display: none;
}

.mobile-bottom-nav-chip {
  width: var(--mobile-nav-chip-size);
  height: var(--mobile-nav-chip-size);
  border-radius: 999px;
  border: 1px solid var(--mobile-nav-chip-border);
  background: var(--mobile-nav-chip-bg);
  display: grid;
  place-items: center;
}

.mobile-bottom-nav-icon-svg {
  width: var(--mobile-nav-icon-size);
  height: var(--mobile-nav-icon-size);
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-bottom-nav-icon-img {
  width: var(--mobile-nav-icon-size);
  height: var(--mobile-nav-icon-size);
  object-fit: contain;
  display: block;
  mix-blend-mode: normal;
}

.mobile-bottom-nav-btn.active .mobile-bottom-nav-icon-img {
  filter: none;
}

.mobile-bottom-nav-icon-svg-fallback {
  display: none;
}

.mobile-bottom-nav-btn[data-mobile-nav="profile"].active .mobile-bottom-nav-icon-img {
  display: block;
  mix-blend-mode: normal;
  filter: brightness(0) invert(1);
}

.mobile-bottom-nav-btn[data-mobile-nav="profile"].active .mobile-bottom-nav-icon-svg-fallback {
  display: none;
}

.mobile-bottom-nav-chip.icon-load-failed .mobile-bottom-nav-icon-img {
  display: none;
}

.mobile-bottom-nav-chip.icon-load-failed .mobile-bottom-nav-icon-svg-fallback {
  display: block;
}

.mobile-bottom-nav-label {
  display: none;
}

.mobile-bottom-nav-btn.active {
  color: var(--mobile-nav-icon-active);
  transform: translateY(-0.5px);
}

.mobile-bottom-nav-btn.active .mobile-bottom-nav-chip {
  background: var(--mobile-nav-chip-active-bg);
  border-color: var(--mobile-nav-chip-active-border);
  box-shadow: 0 5px 12px rgba(44, 53, 50, 0.28);
}

@keyframes cardRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .home-launch-grid {
    grid-template-columns: 1fr;
  }

  .home-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-page-grid {
    grid-template-columns: 1fr;
  }

  .top-city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-panel {
    grid-template-columns: 1fr;
  }

  .category-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .summary-grid {
    grid-template-columns: 1fr;
  }

  .province-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .city-detail-stats {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: center;
    flex-wrap: wrap;
  }

  .header-search {
    order: 3;
    flex: 1 1 100%;
    max-width: none;
    min-width: 0;
  }

  .yr-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qr-col {
    grid-column: span 2;
  }

}

@media (max-width: 620px) {
  .home-launch-card {
    padding: 0.82rem;
  }

  .home-info-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  main {
    width: min(1220px, calc(100% - 1.2rem));
  }

  .global-header-band {
    width: min(1220px, calc(100% - 1.2rem));
  }

  .top-city-grid {
    grid-template-columns: 1fr;
  }

  .category-card-grid {
    grid-template-columns: 1fr;
  }

  .content-page-form-grid {
    grid-template-columns: 1fr;
  }

  .converter-card-grid {
    grid-template-columns: 1fr;
  }

  .converter-mini-grid {
    grid-template-columns: 1fr;
  }

  .content-page-form-card {
    max-width: 100%;
  }

  .home-landing-marquee {
    margin-top: 1rem;
  }

  .yr-footer-grid {
    grid-template-columns: 1fr;
  }

  .qr-col {
    grid-column: auto;
  }

  .yr-footer-col a.store-badge,
.yr-footer-col a.store-badge:hover {
    min-width: 165px;
  }

  .yr-footer-inner {
    width: min(1220px, calc(100% - 1.2rem));
  }

  .yr-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
  }

  .header-search {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .auth-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .lang-switch-menu {
    left: 0;
    right: auto;
    flex-wrap: wrap;
    max-width: 174px;
  }

  .desktop-lang-switch .lang-switch-menu {
    left: auto;
    right: 0;
  }
}

@media (max-width: 860px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    background: #dfdfdf;
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 86px);
    --content-offset: 1.2rem;
    --header-line-start: 0.72rem;
  }

  .texture {
    opacity: 0.26;
  }

  .global-header-band {
    position: relative;
    width: min(1220px, calc(100% - 1rem));
    margin-top: 0;
    padding-top: calc(66px + 1.18rem);
    border: 0;
    border-radius: 0;
    background: var(--bg);
    backdrop-filter: none;
    box-shadow: none;
  }

  .global-topbar {
    min-height: 66px;
    padding: 0.56rem 0.68rem 0.62rem var(--header-line-start);
  }

  .global-topline {
    display: block;
    border-top: 0;
  }

  .global-topline:empty {
    display: none;
    border-top: 0;
  }

  .topbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    gap: 0.65rem;
  }

  .global-topline-inner {
    min-height: 36px;
    margin-inline-start: 0;
    padding: 0.34rem 0.72rem 0.5rem var(--header-line-start);
    gap: 0.36rem;
    font-size: 0.8rem;
    color: rgba(22, 33, 35, 0.72);
    flex-wrap: wrap;
  }

  .brand {
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
  }

  .desktop-auth-links {
    margin-top: 0;
    margin-left: auto;
  }

  .desktop-auth-link {
    min-width: 2rem;
    min-height: 2rem;
  }

  .desktop-auth-link-settings {
    display: none !important;
  }

  .desktop-lang-switch .lang-switch-btn {
    min-height: 1.86rem;
    padding: 0.12rem 0.46rem;
    font-size: 0.78rem;
  }

  .global-topbar .brand-wordmark,
  .brand-wordmark {
    font-size: clamp(2.05rem, 3.45vw, 3.05rem);
    letter-spacing: -0.03em;
  }

  .topbar .brand-wordmark::before {
    width: 1.26em;
    height: 1.26em;
    flex: 0 0 1.26em;
  }

  .header-search {
    display: none;
  }

  .search-page .header-search {
    display: flex;
  }

  .search-page .global-header-band {
    margin-top: 0;
  }

  .search-page-shell {
    padding-top: 0.35rem;
  }

  .search-page .header-search-input,
  .search-page .header-search-btn {
    min-height: 40px;
    border-radius: 11px;
  }

  .search-page .header-search-btn {
    min-width: 60px;
    padding-inline: 0.78rem;
    font-size: 0.88rem;
    font-weight: 700;
  }

  .header-search-input,
  .header-search-btn {
    min-height: 44px;
    border-radius: 12px;
    font-size: 0.95rem;
  }

  .header-search-btn {
    min-height: 40px;
    min-width: 56px;
    padding-inline: 0.7rem;
    font-size: 0.84rem;
    font-weight: 400;
  }

  .search-page .header-search-btn {
    font-weight: 400;
  }

  .hero,
  main {
    width: min(1220px, calc(100% - 1rem));
  }

  .hero {
    padding: 0.95rem 0 1rem;
  }

  .section-head.province-head {
    margin-bottom: 0.72rem;
    padding-inline: 0;
  }

  .home-page .section-head.province-head {
    margin-bottom: 1rem;
  }

  .top-city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.62rem;
  }

  .home-launch-grid {
    gap: 0.72rem;
  }

  .home-launch-head {
    margin-bottom: 0.72rem;
  }

  .home-launch-head h4 {
    font-size: 1.14rem;
  }

  .home-launch-head p {
    font-size: 0.88rem;
  }

  .home-info-link {
    min-height: 88px;
    border-radius: 16px;
    padding: 0.45rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 5px 14px rgba(18, 26, 42, 0.08);
  }

  .top-city-card {
    min-height: 88px;
    border-radius: 16px;
    grid-template-columns: 58px 1fr;
    padding: 0.45rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 5px 14px rgba(18, 26, 42, 0.08);
  }

  .top-city-card:hover,
  .top-city-card.active {
    transform: translateY(-1px);
  }

  .top-city-thumb {
    width: 58px;
    height: 58px;
    border-radius: 12px;
  }

  .top-city-name {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .home-image-marquee {
    margin: 0;
    margin-inline-start: var(--header-line-start);
    margin-bottom: 0.68rem;
    border-radius: 0;
  }

  .home-image-marquee-strip {
    gap: 0;
    padding: 0;
  }

  .home-image-marquee-item {
    width: 118px;
    height: 68px;
    border-radius: 0;
  }

  .yr-footer {
    display: none;
  }

  .mobile-bottom-nav {
    display: block;
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    transform: none !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    z-index: 1400;
    border-top: 1px solid var(--mobile-nav-border);
    border-radius: 0;
    background-color: var(--bg);
    background-image: none;
    box-shadow: var(--mobile-nav-shadow);
    backdrop-filter: blur(10px);
    padding:
      0.26rem max(0.64rem, env(safe-area-inset-left, 0px))
      calc(0.26rem + env(safe-area-inset-bottom, 0px))
      max(0.64rem, env(safe-area-inset-right, 0px));
  }

  .mobile-bottom-nav-actions {
    width: 100%;
    max-width: 100%;
  }

  .mobile-bottom-nav-btn {
    min-width: 0;
  }

  body.home-page {
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 86px);
  }

  body.home-page .mobile-bottom-nav {
    display: block !important;
  }

  .topbar {
    gap: 0.38rem;
  }

  .global-topline-inner {
    overflow-wrap: anywhere;
    word-break: break-word;
    width: 100%;
    max-width: 100%;
  }

  .global-topline-inner > * {
    min-width: 0;
    max-width: 100%;
  }

  .global-topbar .brand-wordmark,
  .brand-wordmark {
    font-size: clamp(2.05rem, 3.45vw, 3.05rem);
  }
}

@media (max-width: 520px) {
  .top-city-grid {
    grid-template-columns: 1fr;
  }

  .home-image-marquee-item {
    width: 104px;
    height: 62px;
  }
}

body.home-page {
  padding-bottom: 0;
}

body.home-page .mobile-bottom-nav {
  display: none;
}

/* Mobile Chrome forced mobile layout (desktop-like viewport fallback) */
html.mobile-force-layout,
body.mobile-chrome-browser.mobile-force-layout {
  overflow-x: hidden;
}

body.mobile-chrome-browser.mobile-force-layout {
  --content-offset: 1.2rem;
  --header-line-start: 0.72rem;
}

body.mobile-chrome-browser.mobile-force-layout .global-header-band,
body.mobile-chrome-browser.mobile-force-layout .hero,
body.mobile-chrome-browser.mobile-force-layout main {
  width: min(var(--device-screen-width, 100vw), calc(100vw - 1rem));
}

body.mobile-chrome-browser.mobile-force-layout .global-header-band {
  position: relative;
  background: var(--bg);
}

body.mobile-chrome-browser.mobile-force-layout.home-page {
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 86px);
}

body.mobile-chrome-browser.mobile-force-layout.home-page .mobile-bottom-nav {
  display: block !important;
  position: fixed !important;
  left: 50% !important;
  right: auto !important;
  bottom: 0 !important;
  transform: translateX(-50%) !important;
  width: min(var(--device-screen-width, 100vw), 100vw);
  max-width: 100vw;
  z-index: 1400;
  border-top: 1px solid var(--mobile-nav-border);
  border-radius: 0;
  background-color: var(--bg);
  background-image: none;
  box-shadow: var(--mobile-nav-shadow);
  backdrop-filter: blur(10px);
  padding:
    0.26rem max(0.64rem, env(safe-area-inset-left, 0px))
    calc(0.26rem + env(safe-area-inset-bottom, 0px))
    max(0.64rem, env(safe-area-inset-right, 0px));
}

body.mobile-chrome-browser.mobile-force-layout .mobile-bottom-nav-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.2rem;
  width: 100%;
  max-width: 100%;
}

body.mobile-chrome-browser.mobile-force-layout .mobile-bottom-nav-btn {
  min-width: 0;
}

body.mobile-chrome-browser.mobile-force-layout .global-topbar {
  margin-bottom: 0;
  padding: 0.56rem 0.68rem 0.62rem var(--header-line-start);
}

body.mobile-chrome-browser.mobile-force-layout .topbar {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  gap: 0.38rem;
}

body.mobile-chrome-browser.mobile-force-layout .brand {
  width: auto;
  flex: 1 1 auto;
  min-width: 0;
}

body.mobile-chrome-browser.mobile-force-layout .global-topline-inner {
  min-height: 36px;
  margin-inline-start: 0;
  padding: 0.34rem 0.72rem 0.5rem var(--header-line-start);
  gap: 0.36rem;
  font-size: 0.8rem;
  color: rgba(22, 33, 35, 0.72);
  flex-wrap: wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
  width: 100%;
  max-width: 100%;
}

body.mobile-chrome-browser.mobile-force-layout .global-topline-inner > * {
  min-width: 0;
  max-width: 100%;
}

body.mobile-chrome-browser.mobile-force-layout .desktop-auth-links {
  margin-top: 0;
  margin-left: auto;
}

body.mobile-chrome-browser.mobile-force-layout .desktop-auth-link {
  min-width: 2rem;
  min-height: 2rem;
}

body.mobile-chrome-browser .desktop-auth-link-settings {
  display: none !important;
}

body.mobile-chrome-browser.mobile-force-layout .desktop-lang-switch .lang-switch-btn {
  min-height: 1.86rem;
  padding: 0.12rem 0.46rem;
  font-size: 0.78rem;
}

body.mobile-chrome-browser.mobile-force-layout .global-topbar .brand-wordmark,
body.mobile-chrome-browser.mobile-force-layout .brand-wordmark {
  font-size: clamp(2.05rem, 3.45vw, 3.05rem);
  letter-spacing: -0.03em;
}

.translate-page .global-topline {
  margin-top: 0;
}

.converter-mini-head {
  display: flex;
  align-items: center;
  flex-direction: row !important;
  gap: 0.75rem;
}

.converter-mini-thumb {
  width: 44px;
  height: 44px;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  background: #f7f7f7 url("assets/cevir.webp") center/cover no-repeat;
  flex: 0 0 auto;
}

.converter-mini-label {
  margin: 0;
  color: #011d36;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.translate-shell {
  max-width: 1080px;
}

.translate-page .hero.translate-shell {
  width: min(1080px, calc(100% - 140px - 2.4rem));
  margin-left: 140px;
  margin-right: auto;
}

.translate-card {
  border: 1px solid #dedfdf;
  border-radius: 4px;
  background: #fefbf7;
  box-shadow: 0 20px 48px rgba(6, 11, 18, 0.08);
  padding: 1rem;
}

.translate-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.translate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 3.4rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: stretch;
}

.translate-panel {
  border: 1px solid #dedfdf;
  border-radius: 4px;
  background: #fefefe;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  min-height: 23rem;
}

.translate-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.translate-panel-title {
  margin: 0;
  color: rgba(22, 33, 35, 0.62);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.translate-select {
  min-width: 10rem;
  border: 1px solid #dedfdf;
  border-radius: 4px;
  background: #fefefe;
  padding: 0.72rem 2.2rem 0.72rem 0.8rem;
  color: #011d36;
  font: inherit;
}

.translate-textarea {
  min-height: 15rem;
  resize: vertical;
  border: 1px solid #dedfdf;
  border-radius: 4px;
  background: #fefefe;
  padding: 0.9rem 0.95rem;
  color: #011d36;
  font: inherit;
  font-size: 0.98rem;
  line-height: 1.55;
}

.translate-textarea:focus {
  outline: none;
  border-color: #b8c8dc;
  box-shadow: 0 0 0 3px rgba(184, 200, 220, 0.18);
}

.translate-output {
  color: #011d36;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
  white-space: pre-wrap;
}

.translate-output.is-placeholder {
  color: rgba(22, 33, 35, 0.44);
  font-weight: 500;
}

.converter-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.converter-mini-card {
  border: 1px solid #e2e5ea;
  border-radius: 6px;
  background: #ffffff;
  padding: 1rem;
  box-shadow: 0 12px 26px rgba(9, 25, 39, 0.08);
}

.kitchen-card {
  width: min(100%, 280px);
}

.converter-mini-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.converter-mini-label {
  margin: 0;
  color: #011d36;
  font-size: 0.88rem;
  font-weight: 700;
}

.converter-mini-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.converter-field {
  display: grid;
  gap: 0.3rem;
}

.converter-field span {
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(22, 33, 35, 0.65);
}

.converter-field input,
.converter-field select {
  border: 1px solid #e2e5ea;
  border-radius: 6px;
  padding: 0.5rem 0.65rem;
  background: #ffffff;
  color: #011d36;
  font: inherit;
}

.converter-mini-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.6rem;
}

.converter-submit {
  border: 1px solid #d7dde5;
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  background: #f6f8fb;
  color: #011d36;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
}

.converter-submit-icon {
  width: 2.05rem;
  height: 2.05rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
}

.converter-mini-result {
  margin-top: 0.7rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(164, 179, 181, 0.35);
}

.converter-result-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #011d36;
}

.converter-result-unit {
  margin: 0.1rem 0 0.2rem;
  font-weight: 600;
  color: rgba(22, 33, 35, 0.6);
}

.converter-result-meta {
  margin: 0;
  font-size: 0.72rem;
  color: rgba(22, 33, 35, 0.55);
}

.converter-upload-shell {
  margin-top: 1.2rem;
}

.converter-upload-card {
  border: 1px solid #e2e5ea;
  border-radius: 8px;
  background: #ffffff;
  padding: 1rem;
  display: grid;
  gap: 0.9rem;
  max-width: 520px;
  box-shadow: 0 12px 28px rgba(9, 25, 39, 0.08);
}

.converter-upload-field {
  display: grid;
  gap: 0.4rem;
}

.converter-upload-field span {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(22, 33, 35, 0.65);
}

.converter-upload-picker {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  border: 1px solid #cfd4db;
  border-radius: 8px;
  padding: 0.35rem 0.6rem;
  background: #ffffff;
}

.converter-upload-trigger {
  border: 1px solid #cfd4db;
  border-radius: 6px;
  padding: 0.45rem 0.9rem;
  background: #f9fafc;
  color: #011d36;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

.converter-upload-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(164, 179, 181, 0.5);
}

.converter-upload-filename {
  font-size: 0.82rem;
  color: rgba(22, 33, 35, 0.6);
}

.converter-upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.converter-upload-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.converter-upload-button {
  border: none;
  border-radius: 4px;
  padding: 0.55rem 1.2rem;
  background: #011d36;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.converter-upload-note {
  font-size: 0.78rem;
  color: rgba(22, 33, 35, 0.55);
}

.converter-upload-status {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(22, 33, 35, 0.7);
}

.converter-upload-status.is-error {
  color: #b84b4b;
}

.converter-embed-shell {
  margin-top: 1.1rem;
  border: 1px solid #e2e5ea;
  border-radius: 8px;
  background: #ffffff;
  padding: 0.9rem;
  box-shadow: 0 12px 28px rgba(9, 25, 39, 0.08);
}

.converter-embed-frame {
  width: 100%;
  height: 860px;
  border: 0;
}

.converter-embed-fallback {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(22, 33, 35, 0.7);
}

.converter-embed-fallback p {
  margin: 0;
}

.converter-embed-link {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: #011d36;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}

.finance-tool-shell {
  width: min(1220px, calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 1.9rem 0 3.2rem;
  display: grid;
  gap: 1rem;
}

.finance-tool-card,
.finance-tool-subcard {
  border: 1px solid #e2e5ea;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(9, 25, 39, 0.08);
  padding: 1rem;
}

.finance-tool-layout {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(150px, 176px);
  justify-content: start;
  align-items: start;
  gap: 1rem 0.6rem;
}

.credit-card .converter-mini-head,
.finance-tool-subcard .converter-mini-head {
  margin-bottom: 0.9rem;
}

.credit-card .converter-mini-label,
.finance-tool-subcard .converter-mini-label {
  font-size: 0.96rem;
  font-weight: 800;
}

.credit-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  align-content: start;
}

.credit-form.credit-form-two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 0.8rem;
}

.credit-form .converter-field span {
  font-size: 0.74rem;
  font-weight: 700;
  color: rgba(22, 33, 35, 0.68);
}

.credit-form .converter-field input,
.credit-form .converter-field select {
  min-height: 38px;
  border: 1px solid #dde3ea;
  background: #ffffff;
  padding: 0.45rem 0.7rem;
  font: inherit;
  color: #162123;
}

.credit-form .converter-field input[readonly] {
  background: #f7f8fa;
}

.converter-mini-actions {
  justify-content: flex-start;
  margin-top: 0.2rem;
}

.credit-card .converter-submit,
.finance-tool-subcard .converter-submit {
  border: 1px solid #18345f;
  background: #18345f;
  color: #ffffff;
  border-radius: 0;
  padding: 0.5rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.converter-secondary {
  border: 1px solid #dde3ea;
  background: #ffffff;
  color: #18345f;
  border-radius: 0;
  padding: 0.45rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.credit-results {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.credit-result-card {
  border: 1px solid #e2e5ea;
  background: #ffffff;
  min-height: 72px;
  padding: 0.7rem 0.8rem;
  display: grid;
  align-content: center;
  justify-items: end;
}

.credit-result-label {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(22, 33, 35, 0.46);
  text-align: right;
}

.credit-result-value {
  font-size: 0.98rem;
  line-height: 1.15;
  font-weight: 800;
  color: #011d36;
  text-align: right;
}

.credit-table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.credit-table-wrap {
  margin-top: 0.9rem;
}

.credit-table {
  width: 100%;
  border-collapse: collapse;
}

.need-loan-page .credit-table-wrap,
.home-loan-page .credit-table-wrap,
.vehicle-loan-page .credit-table-wrap {
  width: 50%;
}

.credit-table th,
.credit-table td {
  border-top: 1px solid #eef1f4;
  padding: 0.55rem 0.5rem;
  font-size: 0.8rem;
  text-align: left;
  color: #162123;
}

.credit-table th {
  font-weight: 800;
  color: rgba(22, 33, 35, 0.58);
}

.reel-page .credit-page-shell {
  width: min(1220px, calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 1.8rem 0 3rem;
}

.reel-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(190px, 240px);
  gap: 1rem;
  align-items: start;
}

.reel-form-card {
  padding: 1.1rem;
}

.reel-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1rem;
}

.reel-form-grid .reel-mode-field {
  grid-column: 1 / -1;
}

.reel-hidden {
  display: none !important;
}

.reel-form-footer {
  margin-top: 0.6rem;
}

.reel-note {
  margin: 0.7rem 0 1rem;
  font-size: 0.82rem;
  color: rgba(22, 33, 35, 0.6);
}

.reel-results {
  gap: 0.75rem;
}

.reel-results .credit-result-card {
  min-height: 78px;
  justify-items: end;
}

@media (max-width: 900px) {
  .reel-layout {
    grid-template-columns: 1fr;
  }
}

.eurobond-note,
.finance-tool-note {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(22, 33, 35, 0.6);
}

@media (max-width: 900px) {
  .finance-tool-layout {
    grid-template-columns: 1fr;
  }

  .credit-form.credit-form-two-column {
    grid-template-columns: 1fr;
  }

  .credit-table-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

.other-shell {
  display: grid;
  gap: 1.2rem;
}

.other-card {
  border: 1px solid #e2e5ea;
  background: #ffffff;
  padding: 1rem;
  box-shadow: 0 12px 28px rgba(9, 25, 39, 0.08);
}

.other-visuals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.other-visual-frame {
  margin: 0;
  border: 1px solid #e2e5ea;
  background: #ffffff;
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 0.8rem;
}

.other-visual {
  max-width: 100%;
  max-height: 240px;
  object-fit: contain;
  display: block;
}

.other-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(320px, 1fr);
  gap: 1rem;
  align-items: start;
}

.other-layout-wide {
  grid-template-columns: minmax(300px, 420px) minmax(360px, 1fr);
}

.other-form,
.other-results {
  display: grid;
  gap: 0.8rem;
}

.other-helper,
.other-error {
  margin: 0;
  font-size: 0.82rem;
}

.other-helper {
  color: rgba(22, 33, 35, 0.6);
}

.other-error {
  color: #b84b4b;
}

.other-button-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.other-inline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.other-result-group {
  border: 1px solid #e2e5ea;
  background: #ffffff;
  padding: 0.9rem;
}

.other-result-group-title {
  margin: 0 0 0.7rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: rgba(22, 33, 35, 0.62);
}

.other-result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.7rem;
}

.other-result-card {
  border: 1px solid #e2e5ea;
  background: #ffffff;
  padding: 0.8rem;
}

.other-result-label {
  margin: 0 0 0.35rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(22, 33, 35, 0.6);
}

.other-result-value {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #011d36;
}

.birth-chart-layout {
  align-items: start;
  grid-template-columns: 360px minmax(360px, 1fr);
}

.birth-chart-layout .other-form {
  width: 360px;
  max-width: 360px;
  justify-self: start;
}

.birth-chart-layout .converter-field {
  width: 100%;
  max-width: 360px;
}

.birth-chart-location {
  grid-template-columns: repeat(2, 172px);
  justify-content: start;
}

.birth-chart-coords {
  grid-template-columns: 120px 120px 86px;
  justify-content: start;
  gap: 0.5rem;
}

.birth-chart-coords .converter-field {
  width: auto;
  min-width: 0;
  max-width: none;
}

.birth-chart-coords .converter-field input,
.birth-chart-coords .converter-field select {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.birth-chart-planet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.7rem;
}

.address-shell {
  display: grid;
  grid-template-columns: minmax(0, 2.15fr) minmax(180px, 0.86fr) minmax(250px, 1.08fr);
  gap: 1rem;
  align-items: start;
}

.address-panel,
.address-result-card,
.address-district-card {
  border: 1px solid #e2e5ea;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(9, 25, 39, 0.08);
}

.address-panel {
  padding: 1rem;
}

.address-panel-head h2 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  line-height: 1.2;
  color: #162123;
}

.address-panel-head p {
  margin: 0 0 0.95rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(22, 33, 35, 0.6);
}

.address-form {
  display: grid;
  gap: 0.85rem;
}

.address-grid {
  display: grid;
  grid-template-columns: repeat(3, 176px);
  gap: 0.75rem;
  justify-content: start;
  max-width: 552px;
}

.address-field,
.address-lookup-field {
  display: grid;
  gap: 0.35rem;
}

.address-field-full {
  grid-column: 1 / span 1;
}

.address-field span,
.address-lookup-field span {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(22, 33, 35, 0.72);
}

.address-field select,
.address-field input,
.address-lookup-field select,
.address-lookup-field input {
  min-height: 40px;
  border: 1px solid #dde3ea;
  background: #ffffff;
  padding: 0.58rem 0.7rem;
  font: inherit;
  color: #162123;
}

.address-field select:disabled,
.address-field input:disabled,
.address-lookup-field select:disabled,
.address-lookup-field input:disabled {
  background: #f6f7f9;
  color: rgba(22, 33, 35, 0.45);
}

.address-actions {
  display: flex;
  justify-content: flex-start;
}

.address-submit {
  border: 1px solid #18345f;
  background: #18345f;
  color: #ffffff;
  min-height: 38px;
  padding: 0.55rem 1rem;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
}

.address-submit-compact {
  width: 100%;
  justify-content: center;
}

.address-warning {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: #b84b4b;
}

.address-result-card,
.address-district-card {
  padding: 1rem;
}

.address-result-card {
  display: grid;
  gap: 0.7rem;
}

.address-result-label {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(22, 33, 35, 0.45);
}

.address-result-value {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
  color: #011d36;
}

.address-postal-box {
  border-top: 1px solid rgba(164, 179, 181, 0.35);
  padding-top: 0.7rem;
  display: grid;
  gap: 0.35rem;
}

.address-postal-label,
.address-result-title {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(22, 33, 35, 0.45);
}

.address-postal-value {
  font-size: 0.88rem;
  font-weight: 800;
  color: #011d36;
}

.address-result-box {
  border-top: 1px solid rgba(164, 179, 181, 0.35);
  padding-top: 0.7rem;
  display: grid;
  gap: 0.35rem;
}

.address-result-box.-hidden {
  display: none;
}

.address-result-copy,
.address-selection,
.address-district-hint,
.address-district-output {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(22, 33, 35, 0.68);
}

.address-side-column {
  display: grid;
  gap: 1rem;
}

.address-district-card {
  display: grid;
  gap: 0.8rem;
}

.address-district-form {
  display: grid;
  gap: 0.7rem;
}

.address-district-output {
  border: 1px solid #e2e5ea;
  background: #ffffff;
  padding: 0.7rem;
  min-height: 38px;
}

@media (max-width: 900px) {
  .converter-embed-frame {
    height: 720px;
  }

  .converter-embed-fallback {
    flex-direction: column;
    align-items: flex-start;
  }

  .kitchen-card {
    width: 100%;
  }

  .other-layout,
  .other-layout-wide,
  .other-inline-grid {
    grid-template-columns: 1fr;
  }

  .other-visuals {
    grid-template-columns: 1fr;
  }

  .address-shell,
  .address-grid {
    grid-template-columns: 1fr;
  }

  .address-field-full {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .converter-embed-frame {
    height: 640px;
  }
}

.translate-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.85rem;
}

.translate-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
}

.translate-status,
.translate-detected {
  margin: 0;
  color: rgba(22, 33, 35, 0.68);
  font-size: 0.79rem;
  font-weight: 700;
}

.translate-status.is-error {
  color: #b84b4b;
}

.translate-button-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.translate-copy-button,
.translate-submit-button,
.translate-swap-button {
  border: 1px solid #dedfdf;
  border-radius: 4px;
  background: #fefefe;
  color: #011d36;
  font: inherit;
  font-weight: 700;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.translate-copy-button,
.translate-submit-button {
  padding: 0.72rem 1rem;
}

.translate-icon-button {
  position: relative;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.translate-icon-button::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.45rem);
  transform: translateX(-50%) translateY(0.2rem);
  border: 1px solid #dedfdf;
  border-radius: 4px;
  background: #fefefe;
  padding: 0.36rem 0.5rem;
  color: #011d36;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
  box-shadow: 0 12px 24px rgba(6, 11, 18, 0.08);
}

.translate-icon-button:hover::after,
.translate-icon-button:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.translate-icon-image {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  object-fit: contain;
}

.translate-icon-image-mic {
  width: 1.05rem;
  height: 1.05rem;
}

.translate-submit-button {
  background: #173560;
  border-color: #173560;
  color: #fefefe;
}

.translate-copy-button:hover,
.translate-swap-button:hover {
  border-color: #ff0000;
  color: #ff0000;
}

.translate-submit-button:hover {
  background: #ff0000;
  border-color: #ff0000;
}

.translate-icon-button.is-active {
  border-color: #ff0000;
  color: #ff0000;
}

.translate-swap-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.translate-swap-button {
  width: 3.4rem;
  height: 3.4rem;
  padding: 0;
  font-size: 1.15rem;
}

.calc-category-shell {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 620px;
}

.calc-mini-head {
  display: flex;
  align-items: center;
  flex-direction: row !important;
  gap: 0.75rem;
}

.calc-mini-label {
  margin: 0;
  color: #011d36;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.calc-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
  width: 100%;
}

.calc-category-grid--dual {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 280px;
}

.calc-category-link,
.calc-category-link:visited {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.42rem 0.5rem;
  border: 1px solid rgba(164, 179, 181, 0.82);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.8);
  color: #011d36;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.calc-category-link:hover,
.calc-category-link:focus-visible {
  border-color: var(--box-border);
  box-shadow: 0 0 0 2px var(--box-hover-soft);
  color: var(--link-hover);
  transform: translateY(-1px);
  text-decoration: none;
  outline: none;
}

.health-shell,
.bmi-shell,
.vaccine-shell {
  display: grid;
}

.health-card,
.bmi-card,
.vaccine-card {
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(210, 216, 219, 0.7);
  border-radius: 10px;
  background: #ffffff;
  padding: 1.25rem 1.4rem 1.35rem;
  box-shadow: 0 18px 42px rgba(11, 20, 28, 0.08);
}

.bmi-card {
  max-width: 760px;
}

.health-layout,
.bmi-layout {
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
  gap: 1.15rem;
  align-items: start;
}

.bmi-layout {
  grid-template-columns: minmax(160px, 230px) minmax(280px, 470px);
  max-width: 720px;
}

.health-form,
.bmi-form,
.health-results,
.bmi-results,
.health-timeline,
.vaccine-header,
.vaccine-list {
  display: grid;
  gap: 0.7rem;
}

.health-results {
  grid-template-columns: repeat(2, minmax(180px, 1fr));
}

.health-timeline {
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  margin-top: 0.6rem;
}

.health-result-card,
.bmi-result-card,
.health-milestone-card,
.vaccine-row {
  border: 1px solid rgba(210, 216, 219, 0.9);
  border-radius: 6px;
  background: #ffffff;
  padding: 0.85rem 0.95rem;
  box-shadow: 0 8px 16px rgba(27, 32, 41, 0.05);
}

.bmi-result-card-emphasis {
  border-color: rgba(2, 129, 194, 0.34);
}

.bmi-result-card-inline .bmi-result-value {
  margin: 0;
}

.bmi-result-card-inline .bmi-result-value {
  color: rgba(1, 29, 54, 0.72);
}

.bmi-result-card-inline .bmi-result-value span {
  color: #011d36;
}

.health-result-label,
.bmi-result-label,
.health-milestone-label {
  margin: 0;
  color: rgba(1, 29, 54, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.health-result-value,
.bmi-result-value,
.health-milestone-value {
  margin: 0.35rem 0 0;
  color: #011d36;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
}

.bmi-note {
  margin: 0;
  color: rgba(22, 33, 35, 0.76);
  font-size: 0.88rem;
  line-height: 1.45;
}

.vaccine-note {
  margin: 0;
  color: rgba(22, 33, 35, 0.76);
  font-size: 0.88rem;
  line-height: 1.45;
}

.vaccine-table {
  display: grid;
  gap: 0;
  border: 1px solid rgba(164, 179, 181, 0.82);
  background: rgba(255, 255, 255, 0.8);
}

.vaccine-row {
  display: grid;
  grid-template-columns: minmax(110px, 150px) minmax(180px, 220px) minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  border: 0;
  background: transparent;
  padding: 0.45rem 0.48rem;
  border-bottom: 1px solid rgba(164, 179, 181, 0.56);
}

.vaccine-row:last-child {
  border-bottom: 0;
}

.vaccine-item-age,
.vaccine-item-date,
.vaccine-item-list {
  margin: 0;
}

.vaccine-item-age {
  color: rgba(1, 29, 54, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.vaccine-item-date,
.vaccine-item-list {
  color: #011d36;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.vaccine-item-list {
  font-weight: 600;
}

.text-tools-shell {
  display: grid;
}

.text-tools-card {
  display: grid;
  gap: 0.82rem;
  border: 1px solid rgba(210, 216, 219, 0.9);
  background: #fefbf7;
  padding: 0.16rem 0.82rem 0.82rem;
  box-shadow: 0 8px 16px rgba(27, 32, 41, 0.05);
}

.text-tools-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.95fr);
  gap: 0.75rem;
  align-items: start;
}

.text-tools-panel,
.text-tools-stats,
.text-tool-output-grid {
  display: grid;
  gap: 0.75rem;
}

.text-tools-source {
  min-height: 230px;
  resize: vertical;
  background: #ffffff;
}

.text-tools-source-field {
  padding-top: 1.05rem;
}

.text-tools-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.text-tools-status {
  margin: 0;
  color: rgba(22, 33, 35, 0.76);
  font-size: 0.88rem;
  font-weight: 600;
}

.text-tools-button-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.text-tools-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.text-tool-stat-card,
.text-tool-output-card {
  border: 1px solid rgba(210, 216, 219, 0.9);
  background: #ffffff;
  padding: 0.82rem;
  box-shadow: 0 8px 16px rgba(27, 32, 41, 0.05);
}

.text-tool-stat-label,
.text-tool-output-label {
  margin: 0;
  color: rgba(1, 29, 54, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.text-tool-stat-value {
  margin: 0.32rem 0 0;
  color: #011d36;
  font-size: 1.95rem;
  font-weight: 800;
  line-height: 1;
}

.text-tools-secondary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.text-tool-output-card {
  gap: 0.65rem;
  display: grid;
}

.text-tool-output-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.text-tool-output-copy {
  border: 1px solid rgba(210, 216, 219, 0.9);
  background: #ffffff;
  color: #011d36;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.38rem 0.7rem;
  cursor: pointer;
}

.text-tool-output-body {
  min-height: 96px;
  border: 1px solid rgba(210, 216, 219, 0.9);
  background: #ffffff;
  padding: 0.9rem;
  color: #011d36;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
}

@media (max-width: 900px) {
  .health-layout,
  .bmi-layout,
  .text-tools-layout {
    grid-template-columns: 1fr;
  }

  .health-results {
    grid-template-columns: 1fr;
  }

  .health-timeline {
    grid-template-columns: 1fr 1fr;
  }

  .vaccine-row {
    grid-template-columns: 1fr;
  }

  .translate-page .hero.translate-shell {
    width: min(1220px, calc(100% - 2.4rem));
    margin-inline: auto;
  }
}

.image-resize-shell {
  padding: 16px 0 48px;
}

.image-resize-card {
  background: #fffdf8;
  border: 1px solid #eee7dd;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 14px 40px rgba(15, 24, 40, 0.08);
}

.image-resize-header h2 {
  margin: 0 0 6px;
  font-size: 24px;
}

.image-resize-header p {
  margin: 0 0 22px;
  color: #5f5f5f;
}

.image-resize-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.image-resize-panel {
  background: #faf7f1;
  border: 1px solid #eee7dd;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-resize-upload {
  display: grid;
  gap: 8px;
  cursor: pointer;
}

.image-resize-upload input {
  display: none;
}

.image-resize-upload-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid #cfcfd4;
  border-radius: 8px;
  background: #fff;
  color: #011d36;
  font-weight: 600;
  width: fit-content;
}

.image-resize-upload-meta {
  color: #6a6a6a;
  font-size: 13px;
}

.image-resize-preview {
  min-height: 180px;
  border: 1px dashed #d8d4cc;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9a9a9a;
  font-size: 14px;
  overflow: hidden;
}

.image-resize-preview-img {
  max-width: 100%;
  max-height: 240px;
  object-fit: contain;
}

.image-resize-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.image-resize-field {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: #555;
}

.image-resize-field input,
.image-resize-field select {
  border: 1px solid #d4d0c8;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 14px;
}

.image-resize-options {
  display: grid;
  gap: 12px;
}

.image-resize-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
}

.image-resize-quality-value {
  font-weight: 600;
  margin-left: 6px;
  color: #011d36;
}

.image-resize-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.image-resize-button {
  border: 1px solid #011d36;
  background: #011d36;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

.image-resize-button.secondary {
  background: #fff;
  color: #011d36;
}

.image-resize-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.image-resize-note {
  margin: 0;
  color: #7a6f64;
  font-size: 13px;
}

.apparel-page {
  background: #f2f2f2;
}

.apparel-shell {
  width: min(1220px, calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 36px 0 60px;
}

.apparel-panel {
  width: 100%;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  padding: 18px 20px 24px;
}

.apparel-head .converter-mini-label {
  font-weight: 700;
  color: #2d2d2d;
}

.apparel-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin: 10px 0 18px;
}

.apparel-controls .converter-field {
  width: 80%;
  justify-self: center;
}

.apparel-controls .converter-field span {
  font-size: 13px;
  color: #6a6a6a;
}

.apparel-controls select {
  border-radius: 8px;
  border: 1px solid #dadada;
  padding: 8px 10px;
  background: #fff;
}

.apparel-results {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}

.apparel-giysi .apparel-results {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.apparel-giysi .apparel-result-card {
  width: 80%;
  justify-self: center;
}

.apparel-ayakkabi .apparel-result-card {
  width: 80%;
  justify-self: center;
}

.apparel-result-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
}

.apparel-result-label {
  font-size: 11px;
  color: #8c8c8c;
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.apparel-result-value {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #212121;
}

.image-crop-shell {
  padding: 16px 0 48px;
}

.image-crop-card {
  background: #fffdf8;
  border: 1px solid #eee7dd;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 14px 40px rgba(15, 24, 40, 0.08);
}

.image-crop-header h2 {
  margin: 0 0 6px;
  font-size: 24px;
}

.image-crop-header p {
  margin: 0 0 22px;
  color: #5f5f5f;
}

.image-crop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.image-crop-panel {
  background: #faf7f1;
  border: 1px solid #eee7dd;
  border-radius: 14px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-crop-upload {
  display: grid;
  gap: 8px;
  cursor: pointer;
}

.image-crop-upload input {
  display: none;
}

.image-crop-upload-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid #cfcfd4;
  border-radius: 8px;
  background: #fff;
  color: #011d36;
  font-weight: 600;
  width: fit-content;
}

.image-crop-upload-meta {
  color: #6a6a6a;
  font-size: 13px;
}

.image-crop-canvas-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #ddd5ca;
  background: #fff;
}

#imageCropCanvas {
  display: block;
  width: 100%;
  height: auto;
}

.image-crop-overlay {
  position: absolute;
  border: 2px solid #011d36;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.35);
  cursor: move;
}

.image-crop-handle {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #011d36;
}

.image-crop-handle[data-handle="nw"] {
  top: -6px;
  left: -6px;
  cursor: nwse-resize;
}

.image-crop-handle[data-handle="n"] {
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  cursor: ns-resize;
}

.image-crop-handle[data-handle="ne"] {
  top: -6px;
  right: -6px;
  cursor: nesw-resize;
}

.image-crop-handle[data-handle="w"] {
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  cursor: ew-resize;
}

.image-crop-handle[data-handle="e"] {
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  cursor: ew-resize;
}

.image-crop-handle[data-handle="sw"] {
  bottom: -6px;
  left: -6px;
  cursor: nesw-resize;
}

.image-crop-handle[data-handle="s"] {
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  cursor: ns-resize;
}

.image-crop-handle[data-handle="se"] {
  bottom: -6px;
  right: -6px;
  cursor: nwse-resize;
}

.image-crop-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.image-crop-field {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: #555;
}

.image-crop-field input {
  border: 1px solid #d4d0c8;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 14px;
}

.image-crop-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
}

.image-crop-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.image-crop-button {
  border: 1px solid #011d36;
  background: #011d36;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

.image-crop-button.secondary {
  background: #fff;
  color: #011d36;
}

.image-crop-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.image-crop-note {
  margin: 0;
  color: #7a6f64;
  font-size: 13px;
}

.image-crop-result {
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: #6a6a6a;
}

#imageCropResult {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #ddd5ca;
  background: #fff;
}

.istanbul-discovery-shell,
.venue-detail-shell {
  display: grid;
  gap: 1rem;
}

.istanbul-topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.istanbul-topbar-link,
.istanbul-topbar-link:visited {
  color: rgba(1, 29, 54, 0.74);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.istanbul-topbar-link-strong,
.istanbul-topbar-link-strong:visited {
  color: #011d36;
}

.istanbul-topbar-link.is-disabled,
.istanbul-topbar-link.is-disabled:visited {
  color: rgba(22, 33, 35, 0.42);
  pointer-events: none;
  text-decoration: none;
}

.istanbul-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.42rem;
  color: rgba(1, 29, 54, 0.7);
  font-size: 0.9rem;
}

.istanbul-breadcrumb a,
.istanbul-breadcrumb a:visited {
  color: #011d36;
  text-decoration: none;
}

.istanbul-discovery-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 320px);
  gap: 0.95rem;
}

.istanbul-discovery-copy,
.istanbul-discovery-hero-card,
.istanbul-filter-card,
.istanbul-results-shell,
.venue-detail-main-card,
.venue-detail-side-card {
  border: 1px solid rgba(210, 216, 219, 0.9);
  border-radius: 4px;
  background: #fefbf7;
  box-shadow: 0 8px 16px rgba(27, 32, 41, 0.05);
}

.istanbul-discovery-copy,
.venue-detail-main-card {
  padding: 1rem;
}

.venue-detail-media {
  overflow: hidden;
  margin-bottom: 0.95rem;
  border: 1px solid rgba(220, 226, 229, 0.92);
  border-radius: 4px;
  background: #ffffff;
}

.venue-detail-media-placeholder {
  margin-bottom: 0.95rem;
  border: 1px dashed rgba(180, 192, 198, 0.92);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(17, 43, 76, 0.06), rgba(242, 234, 224, 0.9));
  min-height: 220px;
  display: grid;
  align-content: center;
  gap: 0.45rem;
  padding: 1.2rem;
}

.venue-detail-media-placeholder-kicker,
.venue-detail-media-placeholder-text {
  margin: 0;
}

.venue-detail-media-placeholder-kicker {
  color: rgba(1, 29, 54, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.venue-detail-media-placeholder-text {
  color: #011d36;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.venue-detail-image {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

.istanbul-discovery-kicker,
.venue-detail-eyebrow,
.istanbul-results-mode {
  margin: 0;
  color: rgba(1, 29, 54, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.istanbul-discovery-copy h1,
.venue-detail-title {
  margin: 0.4rem 0 0;
  color: #011d36;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 1.05;
}

.yeme-icme-hero-title {
  white-space: nowrap;
  font-size: clamp(1.1rem, 1.75vw, 2rem);
}

.istanbul-discovery-subline,
.venue-detail-summary {
  margin: 0.8rem 0 0;
  max-width: 58ch;
  color: rgba(22, 33, 35, 0.82);
  font-size: 0.98rem;
  line-height: 1.55;
}

.venue-detail-section {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.venue-detail-info-grid + #venueDetailReviewsSection {
  margin-top: 2.4rem;
  padding-top: 0.35rem;
}

.venue-detail-section-title {
  margin: 0;
  color: #011d36;
  font-size: 1rem;
  font-weight: 800;
}

.venue-detail-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.venue-detail-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.52rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(210, 216, 219, 0.95);
  background: rgba(1, 29, 54, 0.04);
  color: #011d36;
  font-size: 0.9rem;
  font-weight: 600;
}

.istanbul-discovery-hero-card,
.venue-detail-side-card {
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
  align-content: center;
}

.istanbul-discovery-hero-label {
  margin: 0;
  color: rgba(1, 29, 54, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.istanbul-discovery-primary-button,
.istanbul-pagination-button,
.venue-detail-action,
.admin-table-action,
.admin-logout-button {
  border: 0;
  border-radius: 4px;
  background: #011d36;
  color: #e1e1e1;
  min-height: 34px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1;
  padding: 0.68rem 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.16s ease, transform 0.12s ease, box-shadow 0.16s ease, opacity 0.18s ease;
}

.istanbul-discovery-primary-button:link,
.istanbul-discovery-primary-button:visited,
.istanbul-pagination-button:link,
.istanbul-pagination-button:visited,
.venue-detail-action:link,
.venue-detail-action:visited,
.admin-table-action:link,
.admin-table-action:visited {
  color: #e1e1e1;
  text-decoration: none;
}

.istanbul-filter-reset,
.venue-detail-action-secondary {
  border: 1px solid rgba(1, 29, 54, 0.18);
  border-radius: 4px;
  background: #ffffff;
  color: #011d36;
  min-height: 34px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1;
  padding: 0.68rem 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.12s ease, box-shadow 0.16s ease, opacity 0.18s ease;
}

.istanbul-filter-reset:link,
.istanbul-filter-reset:visited,
.venue-detail-action-secondary:link,
.venue-detail-action-secondary:visited {
  color: #011d36;
  text-decoration: none;
}

.istanbul-discovery-primary-button:hover,
.istanbul-pagination-button:hover,
.venue-detail-action:hover,
.admin-table-action:hover,
.admin-logout-button:hover {
  background: #384796;
  transform: none;
  box-shadow: none;
  outline: none;
}

.istanbul-filter-reset:hover,
.venue-detail-action-secondary:hover {
  background: rgba(56, 71, 150, 0.08);
  border-color: rgba(56, 71, 150, 0.3);
  color: #011d36;
  transform: none;
  box-shadow: none;
  outline: none;
}

.venue-detail-action-inline {
  justify-self: start;
}

.istanbul-discovery-primary-button:focus-visible,
.istanbul-pagination-button:focus-visible,
.venue-detail-action:focus-visible,
.admin-table-action:focus-visible,
.admin-logout-button:focus-visible {
  border: 0;
  background: #022746;
  color: #e1e1e1;
  transform: translateY(-1px);
  box-shadow: 0 0 0 2px var(--hover-blue-soft);
  outline: none;
}

.istanbul-filter-reset:focus-visible,
.venue-detail-action-secondary:focus-visible {
  background: #ffffff;
  border-color: #022746;
  color: #011d36;
  transform: translateY(-1px);
  box-shadow: 0 0 0 2px var(--hover-blue-soft);
  outline: none;
}

.istanbul-discovery-primary-button:disabled,
.istanbul-pagination-button:disabled,
.istanbul-filter-reset:disabled,
.venue-detail-action:disabled,
.admin-table-action:disabled,
.admin-logout-button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.istanbul-discovery-location-note {
  margin: 0;
  color: rgba(22, 33, 35, 0.7);
  font-size: 0.88rem;
  line-height: 1.5;
}

.istanbul-discovery-location-note[data-state="error"] {
  color: #7a1a1a;
}

.istanbul-filter-card {
  padding: 0.9rem;
  display: grid;
  gap: 0.75rem;
}

.istanbul-filter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.istanbul-filter-field {
  display: grid;
  gap: 0.42rem;
}

.istanbul-filter-field span {
  color: rgba(1, 29, 54, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
}

.istanbul-filter-field input,
.istanbul-filter-field select {
  min-height: 46px;
  border: 1px solid rgba(210, 216, 219, 0.9);
  background: #ffffff;
  color: #011d36;
  padding: 0.68rem 0.78rem;
  font: inherit;
}

.istanbul-filter-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.9rem;
}

.istanbul-tag-row,
.istanbul-active-pills,
.istanbul-venue-tags,
.venue-detail-tags,
.venue-detail-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.istanbul-tag-button,
.istanbul-active-pill,
.istanbul-venue-tag,
.venue-detail-tag,
.venue-detail-meta-pill,
.istanbul-venue-distance,
.istanbul-venue-budget {
  border: 1px solid rgba(164, 179, 181, 0.82);
  border-radius: 4px;
  background: #ffffff;
  color: #011d36;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.36rem 0.62rem;
}

.istanbul-tag-button {
  cursor: pointer;
}

.istanbul-tag-button.is-active {
  background: rgba(17, 43, 76, 0.94);
  border-color: rgba(17, 43, 76, 0.94);
  color: #ffffff;
}

.istanbul-venue-budget,
#venueDetailBudget,
.istanbul-venue-distance {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.istanbul-venue-distance {
  position: relative;
}

.istanbul-venue-budget,
#venueDetailBudget {
  position: relative;
  font-weight: 400;
}

.istanbul-venue-budget::before,
#venueDetailBudget::before,
.istanbul-venue-distance::before {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.istanbul-venue-budget::before,
#venueDetailBudget::before {
  background: url("assets/cuzdan.png") center / contain no-repeat;
}

.istanbul-venue-distance::before {
  background: url("assets/uzak.png") center / contain no-repeat;
}

.istanbul-venue-distance::after {
  content: "Konuma uzaklik";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.35rem);
  transform: translateX(-50%);
  border: 1px solid rgba(1, 29, 54, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.98);
  color: #011d36;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
  padding: 0.35rem 0.45rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.14s ease;
}

.istanbul-venue-distance:hover::after,
.istanbul-venue-distance:focus-visible::after {
  opacity: 1;
}

.istanbul-venue-budget::after,
#venueDetailBudget::after {
  content: "Fiyat düzeyi";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.35rem);
  transform: translateX(-50%);
  border: 1px solid rgba(1, 29, 54, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.98);
  color: #011d36;
  font-size: 0.74rem;
  font-weight: 400;
  line-height: 1;
  padding: 0.35rem 0.45rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.14s ease;
}

.istanbul-venue-budget:hover::after,
.istanbul-venue-budget:focus-visible::after,
#venueDetailBudget:hover::after,
#venueDetailBudget:focus-visible::after {
  opacity: 1;
}

#venueDetailBudget {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.istanbul-results-shell {
  padding: 1rem;
  display: grid;
  gap: 0.82rem;
}

.istanbul-results-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.istanbul-results-head h2 {
  margin: 0.32rem 0 0;
  color: #011d36;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
}

.istanbul-results-meta {
  margin: 0;
  color: rgba(22, 33, 35, 0.72);
  font-size: 0.92rem;
  font-weight: 600;
}

.istanbul-results-state {
  border: 1px dashed rgba(164, 179, 181, 0.9);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.66);
  color: rgba(22, 33, 35, 0.82);
  padding: 1rem;
}

.istanbul-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 0.85rem;
}

.istanbul-results-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 360px);
  gap: 0.95rem;
  align-items: start;
}

.istanbul-venue-card {
  border: 1px solid rgba(210, 216, 219, 0.9);
  border-radius: 4px;
  background: #ffffff;
  padding: 0.95rem;
  display: grid;
  gap: 0.68rem;
  box-shadow: 0 8px 16px rgba(27, 32, 41, 0.05);
  cursor: pointer;
}

.istanbul-venue-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(220, 226, 229, 0.92);
  border-radius: 4px;
}

.istanbul-venue-image {
  display: block;
  width: 100%;
  height: 148px;
  object-fit: cover;
}

.istanbul-venue-card.is-selected {
  border-color: rgba(17, 43, 76, 0.94);
  box-shadow: 0 14px 26px rgba(17, 43, 76, 0.12);
}

.istanbul-map-panel {
  position: sticky;
  top: 1rem;
}

.istanbul-map-card {
  border: 1px solid rgba(210, 216, 219, 0.9);
  border-radius: 4px;
  background: #ffffff;
  padding: 0.95rem;
  display: grid;
  gap: 0.82rem;
  box-shadow: 0 8px 16px rgba(27, 32, 41, 0.05);
}

.istanbul-map-panel-kicker {
  margin: 0;
  color: rgba(1, 29, 54, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.istanbul-map-panel-title {
  margin: 0;
  color: #011d36;
  font-size: 1.16rem;
  line-height: 1.2;
}

.istanbul-map-panel-meta {
  margin: 0;
  color: rgba(22, 33, 35, 0.76);
  font-size: 0.9rem;
  line-height: 1.45;
}

.istanbul-map-panel-tags,
.istanbul-map-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.istanbul-map-frame-wrap {
  border: 1px solid rgba(210, 216, 219, 0.9);
  border-radius: 4px;
  background: #f3f5f6;
  min-height: 240px;
}

.istanbul-map-frame {
  width: 100%;
  min-height: 240px;
  border: 0;
  display: block;
}

.istanbul-map-info-list {
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.istanbul-map-info-row {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(224, 229, 231, 0.9);
}

.istanbul-map-info-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.istanbul-map-info-row dt {
  color: rgba(1, 29, 54, 0.62);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.istanbul-map-info-row dd {
  margin: 0;
  color: #011d36;
  font-size: 0.93rem;
  line-height: 1.45;
}

.istanbul-map-panel-link,
.istanbul-map-panel-link:visited {
  color: #011d36;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  align-self: center;
}

.istanbul-venue-card-head,
.istanbul-venue-meta,
.istanbul-venue-actions,
.venue-detail-kicker-row,
.venue-detail-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.istanbul-venue-pill-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.venue-detail-main-card > .venue-detail-meta-row {
  margin-top: 1.1rem;
}

.venue-detail-share-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.venue-detail-share-trigger {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #011d36;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  overflow: hidden;
}

.venue-detail-share-trigger:hover {
  background: transparent;
}

.venue-detail-share-trigger:focus-visible {
  box-shadow: 0 0 0 2px var(--hover-blue-soft);
  outline: none;
}

.venue-detail-share-trigger-icon {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}

.venue-detail-share-trigger-label {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 0.16s ease, opacity 0.16s ease;
}

.venue-detail-share-trigger:hover .venue-detail-share-trigger-label,
.venue-detail-share-trigger:focus-visible .venue-detail-share-trigger-label,
.venue-detail-share-trigger[aria-expanded="true"] .venue-detail-share-trigger-label {
  max-width: 72px;
  opacity: 1;
}

.venue-detail-share-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  z-index: 12;
  min-width: 166px;
  padding: 0.45rem;
  border: 1px solid rgba(210, 216, 219, 0.96);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 28px rgba(17, 43, 76, 0.12);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.venue-detail-share-item {
  border: 1px solid rgba(1, 29, 54, 0.18);
  border-radius: 4px;
  background: #ffffff;
  color: #011d36;
  min-height: 34px;
  width: 100%;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1;
  padding: 0.68rem 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.42rem;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.venue-detail-share-item:link,
.venue-detail-share-item:visited {
  color: #011d36;
  text-decoration: none;
}

.venue-detail-share-item:hover {
  background: #ffffff;
  border-color: rgba(1, 29, 54, 0.18);
}

.venue-detail-share-item:focus-visible {
  border-color: #022746;
  box-shadow: 0 0 0 2px var(--hover-blue-soft);
  outline: none;
}

.venue-detail-share-icon-button {
  width: 45px;
  min-width: 45px;
  min-height: 45px;
  padding: 0.3rem;
  justify-content: center;
  position: relative;
}

.venue-detail-share-item-icon {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

#venueDetailWhatsappShareLink .venue-detail-share-item-icon,
#venueDetailXShareLink .venue-detail-share-item-icon {
  width: 44px;
  height: 44px;
}

#venueDetailNativeShareButton .venue-detail-share-item-icon,
#venueDetailFacebookShareLink .venue-detail-share-item-icon {
  width: 27px;
  height: 27px;
}

#venueDetailTelegramShareLink .venue-detail-share-item-icon {
  width: 27px;
  height: 27px;
}

.venue-detail-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#venueDetailWhatsappShareLink.venue-detail-share-icon-button::after,
#venueDetailXShareLink.venue-detail-share-icon-button::after {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.35rem);
  transform: translateX(-50%);
  border: 1px solid rgba(1, 29, 54, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.98);
  color: #011d36;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.35rem 0.45rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.14s ease;
}

#venueDetailWhatsappShareLink.venue-detail-share-icon-button::after {
  content: "WhatsApp";
}

#venueDetailXShareLink.venue-detail-share-icon-button::after {
  content: "X";
}

#venueDetailWhatsappShareLink.venue-detail-share-icon-button:hover::after,
#venueDetailWhatsappShareLink.venue-detail-share-icon-button:focus-visible::after,
#venueDetailXShareLink.venue-detail-share-icon-button:hover::after,
#venueDetailXShareLink.venue-detail-share-icon-button:focus-visible::after {
  opacity: 1;
}

.istanbul-venue-action-group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.istanbul-venue-actions > .istanbul-venue-action-group:only-child {
  width: 100%;
  justify-content: flex-end;
}

.istanbul-venue-eyebrow {
  margin: 0;
  color: rgba(1, 29, 54, 0.62);
  font-size: 0.8rem;
  font-weight: 700;
}

.istanbul-venue-title {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
}

.istanbul-venue-title-link,
.istanbul-venue-title-link:visited {
  color: #011d36;
  text-decoration: none;
}

.istanbul-venue-detail-link,
.istanbul-venue-detail-link:visited {
  border: 1px solid rgba(164, 179, 181, 0.82);
  border-radius: 4px;
  background: #ffffff;
  color: #011d36;
  text-decoration: none;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.36rem 0.62rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.istanbul-venue-address {
  margin: 0;
  color: rgba(22, 33, 35, 0.8);
  font-size: 0.92rem;
  line-height: 1.45;
}

.istanbul-venue-rating {
  color: #011d36;
  font-size: 0.9rem;
  font-weight: 700;
}

.istanbul-venue-actions {
  justify-content: space-between;
  align-items: center;
}

.istanbul-venue-map-link {
  margin-left: auto;
}

.card-share-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.card-share-trigger {
  border: 1px solid rgba(1, 29, 54, 0.18);
  border-radius: 4px;
  background: #ffffff;
  color: #011d36;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1;
  padding: 0.36rem 0.62rem;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.12s ease, box-shadow 0.16s ease;
}

.card-share-trigger:focus-visible {
  border-color: #022746;
  transform: translateY(-1px);
  box-shadow: 0 0 0 2px var(--hover-blue-soft);
  outline: none;
}

.card-share-trigger-icon {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}

.card-share-trigger-label {
  opacity: 1;
}

.card-share-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  z-index: 12;
  min-width: 152px;
  padding: 0.4rem;
  border: 1px solid rgba(210, 216, 219, 0.96);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 28px rgba(17, 43, 76, 0.12);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.38rem;
}

.card-share-item {
  border: 1px solid rgba(1, 29, 54, 0.18);
  border-radius: 4px;
  background: #ffffff;
  color: #011d36;
  width: 100%;
  min-height: 40px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1;
  padding: 0.28rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}

.card-share-item:link,
.card-share-item:visited {
  color: #011d36;
  text-decoration: none;
}

.card-share-item:hover {
  background: #ffffff;
  border-color: rgba(1, 29, 54, 0.18);
}

.card-share-item:focus-visible {
  border-color: #022746;
  box-shadow: 0 0 0 2px var(--hover-blue-soft);
  outline: none;
}

.card-share-icon-button {
  width: 40px;
  min-width: 40px;
  min-height: 40px;
  position: relative;
}

.card-share-item-icon {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
}

.card-whatsapp-share-link .card-share-item-icon,
.card-x-share-link .card-share-item-icon {
  width: 40px;
  height: 40px;
}

.card-native-share-button .card-share-item-icon,
.card-facebook-share-link .card-share-item-icon,
.card-telegram-share-link .card-share-item-icon {
  width: 24px;
  height: 24px;
}

.card-share-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.card-share-icon-button[data-share-label]::after {
  content: attr(data-share-label);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.35rem);
  transform: translateX(-50%);
  border: 1px solid rgba(1, 29, 54, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.98);
  color: #011d36;
  font-size: 0.74rem;
  font-weight: 400;
  line-height: 1;
  padding: 0.35rem 0.45rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.14s ease;
}

.card-share-icon-button[data-share-label]:hover::after,
.card-share-icon-button[data-share-label]:focus-visible::after {
  opacity: 1;
}

.istanbul-favorite-button {
  border: 1px solid rgba(1, 29, 54, 0.18);
  border-radius: 4px;
  background: #ffffff;
  color: #011d36;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 400;
  padding: 0.36rem 0.62rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  position: relative;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.12s ease, box-shadow 0.16s ease;
}

.istanbul-favorite-button::before {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  background: url("assets/fav.png") center / contain no-repeat;
}

.istanbul-favorite-button::after {
  content: "Favorilere kaydet";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.35rem);
  transform: translateX(-50%);
  border: 1px solid rgba(1, 29, 54, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.98);
  color: #011d36;
  font-size: 0.74rem;
  font-weight: 400;
  line-height: 1;
  padding: 0.35rem 0.45rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.14s ease;
}

.istanbul-favorite-button:hover {
  background: #ffffff;
  border-color: rgba(1, 29, 54, 0.18);
}

.istanbul-favorite-button:focus-visible {
  background: #ffffff;
  border-color: #022746;
  color: #011d36;
  transform: translateY(-1px);
  box-shadow: 0 0 0 2px var(--hover-blue-soft);
  outline: none;
}

.istanbul-favorite-button:hover::after,
.istanbul-favorite-button:focus-visible::after {
  opacity: 1;
}

.istanbul-favorite-button.is-active,
.venue-detail-action.is-active {
  background: rgba(17, 43, 76, 0.94);
  border-color: rgba(17, 43, 76, 0.94);
  color: #ffffff;
}

.istanbul-favorite-button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.istanbul-pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.6rem;
}

.istanbul-pagination-current {
  color: #011d36;
  font-size: 0.9rem;
  font-weight: 700;
}

.venue-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 320px);
  gap: 0.95rem;
}

.venue-detail-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.82rem;
  margin: 1rem 0 0;
}

.venue-detail-info-item {
  border: 1px solid rgba(210, 216, 219, 0.9);
  border-radius: 4px;
  background: #ffffff;
  padding: 0.82rem;
  box-shadow: 0 8px 16px rgba(27, 32, 41, 0.05);
}

.venue-detail-info-item dt {
  margin: 0;
  color: rgba(1, 29, 54, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.venue-detail-info-item dd {
  margin: 0.45rem 0 0;
  color: #011d36;
  font-size: 0.95rem;
  line-height: 1.5;
}

.venue-detail-info-item dd a,
.venue-detail-info-item dd a:visited {
  color: #011d36;
  text-decoration: none;
}

.venue-detail-side-card h2 {
  margin: 0;
  color: #011d36;
  font-size: 1rem;
}

.venue-detail-map-wrap {
  border: 1px solid rgba(210, 216, 219, 0.9);
  border-radius: 4px;
  background: #f3f5f6;
  min-height: 240px;
}

.venue-detail-map-frame {
  width: 100%;
  min-height: 240px;
  border: 0;
  display: block;
}

.venue-detail-review-list {
  display: grid;
  gap: 0.7rem;
}

.venue-detail-state-message {
  margin: 0;
}

.venue-detail-state-actions {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.venue-detail-review {
  margin: 0;
  border-left: 3px solid rgba(17, 43, 76, 0.24);
  border-radius: 4px;
  background: #ffffff;
  padding: 0.82rem 0.9rem;
  color: rgba(22, 33, 35, 0.86);
  font-size: 0.94rem;
  line-height: 1.6;
  box-shadow: 0 8px 16px rgba(27, 32, 41, 0.05);
}

.admin-venues-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  align-items: start;
}

.admin-panel-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  margin-bottom: 0.95rem;
}

.admin-panel-nav-card {
  border: 1px solid rgba(210, 216, 219, 0.9);
  background: #ffffff;
  padding: 1rem;
  box-shadow: 0 8px 16px rgba(27, 32, 41, 0.05);
  display: grid;
  gap: 0.28rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.admin-panel-nav-card:hover,
.admin-panel-nav-card:focus-visible {
  border-color: rgba(17, 43, 76, 0.3);
  box-shadow: 0 12px 24px rgba(17, 43, 76, 0.08);
  transform: translateY(-1px);
  outline: none;
}

.admin-panel-nav-card.is-active {
  border-color: rgba(17, 43, 76, 0.46);
  background: rgba(248, 251, 255, 0.96);
}

.admin-panel-nav-kicker {
  font-size: 0.76rem;
  color: rgba(22, 33, 35, 0.62);
}

.admin-panel-nav-title {
  color: #011d36;
  font-size: 1.02rem;
}

.admin-panel-nav-copy {
  color: rgba(22, 33, 35, 0.78);
  font-size: 0.88rem;
  line-height: 1.45;
}

.admin-venues-list-card,
.admin-venue-form-card {
  border: 1px solid rgba(210, 216, 219, 0.9);
  background: #ffffff;
  padding: 1rem;
  box-shadow: 0 8px 16px rgba(27, 32, 41, 0.05);
  display: grid;
  gap: 0.9rem;
}

.admin-venues-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.9rem;
}

.admin-venues-title {
  margin: 0.25rem 0 0;
  color: #011d36;
  font-size: 1.3rem;
}

.admin-venues-filter-grid,
.admin-venue-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.82rem;
}

.admin-venue-field-wide {
  grid-column: 1 / -1;
}

.admin-venues-actions-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.admin-venues-count-note {
  color: rgba(1, 29, 54, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
  margin-left: auto;
}

.admin-venues-scope-note {
  margin: 0;
  color: rgba(22, 33, 35, 0.72);
  font-size: 0.88rem;
  line-height: 1.45;
}

.admin-session-chip {
  border: 1px solid rgba(188, 195, 198, 0.88);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
}

.admin-login-shell {
  display: flex;
  justify-content: center;
}

.admin-login-card {
  width: min(100%, 480px);
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(210, 216, 219, 0.9);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(17, 43, 76, 0.08);
}

.admin-login-copy {
  margin: 0;
  color: rgba(1, 29, 54, 0.72);
  font-size: 0.95rem;
  line-height: 1.5;
}

.admin-login-form {
  display: grid;
  gap: 0.9rem;
}

.admin-password-field {
  gap: 0.45rem;
}

.admin-password-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
}

.admin-password-input-row input {
  min-width: 0;
}

.admin-password-toggle {
  min-height: 48px;
  padding-inline: 0.95rem;
  white-space: nowrap;
}

.admin-login-inline-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.admin-login-assist-link,
.admin-login-assist-link:visited {
  color: #112b4c;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.admin-photos-toolbar {
  justify-content: space-between;
}

.admin-photos-toolbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.admin-photo-list {
  display: grid;
  gap: 0.8rem;
}

.admin-photo-item {
  display: grid;
  gap: 0.8rem;
  padding: 0.9rem;
  border: 1px solid rgba(210, 216, 219, 0.9);
  background: rgba(255, 255, 255, 0.92);
}

.admin-photo-item-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.admin-photo-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.admin-photo-primary-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(1, 29, 54, 0.82);
  font-size: 0.9rem;
}

.admin-photo-remove-button {
  margin-left: auto;
}

.admin-photo-preview-wrap {
  border: 1px solid rgba(210, 216, 219, 0.9);
  background: rgba(247, 249, 250, 0.96);
  padding: 0.55rem;
}

.admin-photo-uri-preview-wrap {
  margin-top: 0.55rem;
}

.admin-photo-uri-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.55rem;
  align-items: center;
}

.admin-photo-preview {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: cover;
}

.admin-venue-table-wrap {
  max-height: 70vh;
  overflow: auto;
  border: 1px solid rgba(210, 216, 219, 0.9);
}

.admin-venue-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

.admin-venue-table th,
.admin-venue-table td {
  padding: 0.8rem 0.72rem;
  border-bottom: 1px solid rgba(225, 229, 232, 0.92);
  vertical-align: top;
  text-align: left;
}

.admin-venue-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f7fafc;
  color: rgba(1, 29, 54, 0.78);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.admin-table-sort-button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  letter-spacing: inherit;
  text-transform: inherit;
  padding: 0;
}

.admin-table-sort-button::after {
  content: "↕";
  font-size: 0.8rem;
  opacity: 0.45;
}

.admin-table-sort-button[data-direction="asc"]::after {
  content: "↑";
  opacity: 1;
}

.admin-table-sort-button[data-direction="desc"]::after {
  content: "↓";
  opacity: 1;
}

.admin-venue-row {
  cursor: pointer;
}

.admin-venue-row:hover {
  background: rgba(238, 244, 249, 0.72);
}

.admin-venue-row.is-active {
  background: rgba(17, 43, 76, 0.08);
}

.admin-table-action {
  white-space: nowrap;
}

.admin-table-action-group {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.admin-venue-list {
  display: grid;
  gap: 0.55rem;
  max-height: 70vh;
  overflow: auto;
}

.admin-venue-list-item {
  border: 1px solid rgba(210, 216, 219, 0.9);
  background: #ffffff;
  color: #011d36;
  text-align: left;
  padding: 0.82rem;
  display: grid;
  gap: 0.28rem;
  cursor: pointer;
  font: inherit;
}

.admin-venue-list-item.is-active {
  border-color: rgba(17, 43, 76, 0.94);
  box-shadow: 0 10px 18px rgba(17, 43, 76, 0.12);
}

.admin-venue-list-item-title {
  font-size: 0.98rem;
}

.admin-venue-list-item-meta {
  color: rgba(22, 33, 35, 0.72);
  font-size: 0.86rem;
}

.admin-venue-list-badges {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-top: 0.15rem;
}

.admin-venue-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.74rem;
  font-weight: 700;
}

.admin-venue-badge.is-active,
.admin-venue-badge.is-open {
  background: rgba(21, 122, 77, 0.12);
  color: #157a4d;
}

.admin-venue-badge.is-passive,
.admin-venue-badge.is-closed {
  background: rgba(149, 58, 52, 0.12);
  color: #953a34;
}

.admin-venue-badge.is-mvp {
  background: rgba(17, 43, 76, 0.1);
  color: #112b4c;
}

.admin-venues-list-card {
  gap: 0.72rem;
}

.admin-venues-list-card .istanbul-discovery-kicker {
  font-size: 0.61rem;
}

.admin-venues-list-card .admin-venues-title {
  font-size: 1.04rem;
  margin-top: 0.18rem;
}

.admin-venues-list-card .istanbul-filter-field span,
.admin-venues-list-card .admin-venues-scope-note,
.admin-venues-list-card .istanbul-results-state,
.admin-venues-list-card .istanbul-pagination-current {
  font-size: 0.72rem;
}

.admin-venues-list-card .istanbul-filter-field {
  display: grid;
  align-content: start;
  gap: 0.32rem;
}

.admin-venues-list-card .istanbul-filter-field input,
.admin-venues-list-card .istanbul-filter-field select {
  min-height: 2.35rem;
  padding: 0.46rem 0.58rem;
  font-size: 0.72rem;
  box-sizing: border-box;
}

.admin-venues-list-card .admin-venues-actions-row {
  gap: 0.56rem;
}

.admin-venues-list-card .istanbul-filter-reset,
.admin-venues-list-card .istanbul-discovery-primary-button,
.admin-venues-list-card .admin-table-action,
.admin-venues-list-card .istanbul-pagination-button {
  min-height: 2.35rem;
  padding: 0.46rem 0.62rem;
  font-size: 0.72rem;
  box-sizing: border-box;
}

.admin-venues-list-card .admin-venue-table th,
.admin-venues-list-card .admin-venue-table td {
  padding: 0.64rem 0.58rem;
  font-size: 0.72rem;
}

.admin-venues-list-card .admin-venue-table th {
  font-size: 0.62rem;
}

.admin-venues-list-card .admin-table-sort-button::after {
  font-size: 0.66rem;
}

.admin-venues-list-card .admin-venue-list-item-title {
  font-size: 0.78rem;
}

.admin-venues-list-card .admin-venue-list-item-meta {
  font-size: 0.72rem;
}

.admin-venues-list-card .admin-venue-list-badges,
.admin-venues-list-card .admin-table-action-group {
  gap: 0.36rem;
}

.admin-venues-list-card .admin-venue-badge {
  min-height: 1.55rem;
  padding: 0.18rem 0.46rem;
  font-size: 0.6rem;
  box-sizing: border-box;
}

.admin-map-link-field {
  align-content: end;
}

.admin-map-link-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.admin-venue-form {
  display: grid;
  gap: 0.9rem;
}

.admin-venue-form textarea {
  width: 100%;
  border: 1px solid rgba(188, 195, 198, 0.88);
  background: #ffffff;
  color: #011d36;
  font: inherit;
  padding: 0.72rem 0.8rem;
  resize: vertical;
  min-height: 110px;
}

.admin-venue-form input.is-invalid,
.admin-venue-form select.is-invalid,
.admin-venue-form textarea.is-invalid,
#adminTagList.is-invalid,
.admin-photo-list.is-invalid {
  border-color: rgba(149, 58, 52, 0.96) !important;
  box-shadow: 0 0 0 3px rgba(149, 58, 52, 0.12);
}

#adminTagList.is-invalid,
.admin-photo-list.is-invalid {
  padding: 0.55rem;
  border: 1px solid rgba(149, 58, 52, 0.96);
}

.admin-form-feedback-list {
  margin: -0.35rem 0 0;
  padding-left: 1.1rem;
  color: #953a34;
  font-size: 0.9rem;
  line-height: 1.45;
}

.admin-field-error {
  display: block;
  margin-top: 0.38rem;
  color: #953a34;
  font-size: 0.82rem;
  line-height: 1.4;
  font-weight: 700;
}

.admin-tag-field {
  display: grid;
  gap: 0.5rem;
}

.admin-tag-field-label {
  color: rgba(1, 29, 54, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

@media (max-width: 900px) {
  .translate-layout {
    grid-template-columns: 1fr;
  }

  .translate-swap-wrap {
    order: 3;
  }

  .translate-panel {
    min-height: auto;
  }

  .translate-select {
    width: 100%;
    min-width: 0;
  }

  .translate-panel-head,
  .translate-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .translate-button-row {
    width: 100%;
    justify-content: flex-start;
  }

  .calc-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apparel-controls {
    grid-template-columns: 1fr;
  }

  .istanbul-discovery-hero,
  .venue-detail-layout,
  .istanbul-results-layout,
  .admin-venues-layout {
    grid-template-columns: 1fr;
  }

  .admin-panel-nav {
    grid-template-columns: 1fr;
  }

  .istanbul-filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-venue-form-grid,
  .admin-venues-filter-grid,
  .admin-photo-item-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .calc-category-grid {
    grid-template-columns: 1fr;
  }

  .text-tools-secondary,
  .text-tools-stats {
    grid-template-columns: 1fr;
  }

  .istanbul-topbar-actions,
  .istanbul-filter-toolbar,
  .istanbul-results-head,
  .istanbul-venue-card-head,
  .istanbul-venue-actions,
  .venue-detail-kicker-row,
  .venue-detail-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .istanbul-venue-map-link {
    margin-left: 0;
    align-self: flex-end;
  }

  .istanbul-filter-grid,
  .venue-detail-info-grid,
  .admin-venue-form-grid,
  .admin-venues-filter-grid,
  .admin-photo-item-grid {
    grid-template-columns: 1fr;
  }

  .istanbul-map-panel {
    position: static;
  }

  .admin-venues-toolbar,
  .admin-venues-actions-row {
    flex-direction: column;
    align-items: stretch;
  }

  .istanbul-pagination {
    justify-content: flex-start;
  }

  .venue-detail-share-menu {
    min-width: min(166px, calc(100vw - 3rem));
  }
}
