@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/MaterialIcons-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Material Icons Outlined';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/MaterialIconsOutlined-Regular.otf') format('opentype');
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #fff;
  color: rgba(0, 0, 0, 0.87);
  -webkit-font-smoothing: antialiased;
}

#lv-public-root {
  min-height: 100vh;
  min-height: 100dvh;
}

.lv-page,
.lv-layout-menu {
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  background: #fff;
}

.lv-layout-menu {
  display: flex;
  flex-direction: column;
}

.lv-page--themed {
  display: flex;
  flex-direction: column;
}

.lv-hero {
  width: 100%;
  padding: 32px 24px;
  text-align: center;
  color: #fff;
}

.lv-hero--compact {
  padding: 28px 24px;
}

.lv-logo {
  display: block;
  margin: 0 auto;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.lv-logo--circle {
  border-radius: 50%;
}

.lv-logo--square {
  border-radius: 30px;
}

.lv-logo--page {
  width: 180px;
  height: 180px;
}

.lv-logo--menu {
  width: 144px;
  height: 144px;
}

.lv-hero-title {
  margin: 14px 0 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.lv-hero-title--sm {
  margin-top: 12px;
  font-size: 24px;
  letter-spacing: 0;
}

.lv-hero-subtitle {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
}

.lv-hero-subtitle--sm {
  font-size: 14px;
  margin-top: 6px;
}

.lv-body {
  padding: 24px;
  width: 100%;
}

.lv-surface {
  position: relative;
  isolation: isolate;
  flex: 1;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #f8fafc 0%,
    #ffffff 55%,
    color-mix(in srgb, var(--lv-accent-soft, #0ea5e9) 3%, #ffffff) 100%
  );
}

.lv-surface::after {
  content: '';
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -28px;
  height: 260px;
  background: radial-gradient(
    ellipse 82% 72% at 50% 100%,
    color-mix(in srgb, var(--lv-accent-soft, #0ea5e9) 9%, transparent),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.lv-surface > * {
  position: relative;
  z-index: 1;
}

.lv-card {
  background: #f8fafc;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 20px;
}

.lv-card + .lv-card {
  margin-top: 20px;
}

.lv-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.lv-card-title {
  flex: 1;
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.87);
}

.lv-mi {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 22px;
  line-height: 1;
  display: inline-block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #607d8b;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: 'liga';
  -webkit-font-feature-settings: 'liga';
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

.lv-mi--outlined {
  font-family: 'Material Icons Outlined';
}

.lv-mi--lg {
  font-size: 24px;
  width: 24px;
  height: 24px;
}

.lv-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.lv-badge--open {
  color: #16a34a;
  background: #dcfce7;
}

.lv-badge--closed {
  color: #ff5252;
  background: #fee2e2;
}

.lv-hours-row {
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.lv-hours-row + .lv-hours-row {
  border-top: 1px solid #e0e0e0;
}

.lv-hours-day {
  width: 112px;
  flex-shrink: 0;
  font-weight: 600;
  font-size: 15.5px;
  color: rgba(0, 0, 0, 0.87);
}

.lv-hours-time {
  flex: 1;
  text-align: center;
  font-weight: 600;
  font-size: 15.5px;
  color: rgba(0, 0, 0, 0.87);
}

.lv-hours-time.is-closed {
  color: #ff5252;
}

.lv-contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 8px 0;
  text-decoration: none;
  color: inherit;
}

.lv-contact-item + .lv-contact-item {
  border-top: 1px solid #e0e0e0;
}

.lv-contact-text {
  min-width: 0;
}

.lv-contact-label {
  font-size: 15px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.87);
}

.lv-contact-value {
  font-size: 14.5px;
  color: rgba(0, 0, 0, 0.87);
  margin-top: 2px;
  word-break: break-word;
}

.lv-address-text {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.87);
}

.lv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 20px;
  padding: 14px 18px;
  border: 0;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}

.lv-btn .lv-mi {
  color: currentColor;
  font-size: 20px;
}

.lv-directions-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.lv-directions-sheet {
  width: 100%;
  max-width: 520px;
  background: #1e2937;
  border-radius: 20px 20px 0 0;
  padding: 12px 20px calc(20px + env(safe-area-inset-bottom, 0px));
  max-height: 80vh;
  overflow-y: auto;
}

.lv-directions-handle {
  width: 40px;
  height: 4px;
  margin: 0 auto 16px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.24);
}

.lv-directions-title {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.lv-directions-address {
  margin: 6px 0 16px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.4;
}

.lv-directions-option {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 12px 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.lv-directions-option + .lv-directions-option {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lv-directions-option .lv-mi {
  color: #38bdf8;
}

.lv-social-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lv-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  text-decoration: none;
}

.lv-social-btn svg {
  width: 32px;
  height: 32px;
  display: block;
}

.lv-tabs-wrap {
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
}

.lv-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  min-height: 46px;
  padding: 6px 14px 0;
  scrollbar-width: none;
}

.lv-tabs::-webkit-scrollbar {
  display: none;
}

.lv-tab {
  flex-shrink: 0;
  padding: 8px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f1f5f9;
  color: #0f172a;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.lv-tab.is-active {
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 10px rgba(14, 165, 233, 0.22);
}

.lv-swipe-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0 16px 8px;
  color: #94a3b8;
  font-size: 11px;
}

.lv-swipe-hint .lv-mi {
  font-size: 14px;
  width: 14px;
  height: 14px;
  color: #cbd5e1;
}

.lv-layout-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.lv-menu-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 12px 16px 24px;
  min-height: 0;
}

.lv-layout-menu .lv-menu-content.lv-surface {
  background: linear-gradient(
    180deg,
    #f8fafc 0%,
    #ffffff 38%,
    color-mix(in srgb, var(--lv-accent-soft, #0ea5e9) 3%, #ffffff) 100%
  );
}

.lv-layout-menu .lv-menu-content.lv-surface::after {
  left: -14%;
  right: -14%;
  bottom: 0;
  height: 72%;
  background: radial-gradient(
    ellipse 92% 68% at 50% 100%,
    color-mix(in srgb, var(--lv-accent-soft, #0ea5e9) 7%, transparent),
    transparent 72%
  );
}

.lv-menu-content--empty {
  align-items: center;
  justify-content: center;
}

.lv-pager {
  flex: 0 0 auto;
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
}

.lv-pager-track {
  display: flex;
  align-items: flex-start;
  width: 100%;
  will-change: transform;
}

.lv-pager-page {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
}

.lv-category-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.lv-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

.lv-item-row + .lv-item-row {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.lv-item-copy {
  min-width: 0;
  flex: 1;
}

.lv-item-name {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1px;
}

.lv-item-subtitle {
  margin: 3px 0 0;
  font-size: 11px;
  line-height: 1.25;
  font-style: italic;
  color: #94a3b8;
}

.lv-item-price {
  flex-shrink: 0;
  width: 7.5rem;
  text-align: right;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lv-empty {
  padding: 32px 16px;
  text-align: center;
  color: #94a3b8;
  font-size: 15px;
}

/* Viewport altına sabit: içerik uzun olsa da WhatsApp / Yorum her zaman görünür */
.lv-contact-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  gap: 8px;
  max-width: 720px;
  margin: 0 auto;
  padding: 12px 12px calc(12px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 -8px 28px rgba(15, 23, 42, 0.12);
}

/* Sabit çubuk içeriği kapatmasın */
#lv-public-root:has(.lv-contact-bar) .lv-page,
#lv-public-root:has(.lv-contact-bar) .lv-layout-menu {
  padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
}

/* :has desteklemeyen tarayıcılar için (bar DOM'da varsa JS class ekler) */
#lv-public-root.has-contact-bar .lv-page,
#lv-public-root.has-contact-bar .lv-layout-menu {
  padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
}

.lv-contact-bar-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.lv-contact-bar-btn--whatsapp {
  color: #25d366;
  background: rgba(37, 211, 102, 0.12);
}

.lv-contact-bar-icon {
  flex-shrink: 0;
}

.lv-contact-bar-btn--accent {
  background: rgba(15, 23, 42, 0.08);
}

.lv-seo-static {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 16px 32px;
  line-height: 1.55;
  font-size: 15px;
}

.lv-seo-breadcrumb {
  margin: 0 0 16px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.55);
}

.lv-seo-breadcrumb a {
  color: inherit;
  text-decoration: underline;
}

.lv-seo-static h1 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  line-height: 1.25;
}

.lv-seo-static p {
  margin: 0 0 10px;
}

.lv-seo-static ul {
  margin: 12px 0 0;
  padding-left: 1.2rem;
}

.lv-seo-static li {
  margin-bottom: 6px;
}

body.lv-js-ready .lv-seo-static {
  display: none;
}

.lv-appointment-booking {
  margin-bottom: 16px;
  overflow: hidden;
}

.lv-appointment-form {
  min-width: 0;
}

.lv-appointment-hint {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(15, 23, 42, 0.65);
}

.lv-appointment-category + .lv-appointment-category {
  margin-top: 16px;
}

.lv-appointment-category-title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lv-appointment-service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lv-appointment-service {
  display: block;
  cursor: pointer;
}

.lv-appointment-service input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lv-appointment-service-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lv-appointment-service input:checked + .lv-appointment-service-card {
  border-color: var(--lv-accent-soft, #0ea5e9);
  box-shadow: 0 0 0 1px var(--lv-accent-soft, #0ea5e9);
}

.lv-appointment-date-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}

.lv-appointment-date-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.8);
}

.lv-appointment-date-field input[type='date'] {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 12px 14px;
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
  -webkit-appearance: none;
  appearance: none;
}

.lv-appointment-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 16px;
  padding: 14px 16px;
  border: none;
  border-radius: 12px;
  background: #25d366;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}

.lv-appointment-submit.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.lv-practical-info {
  background: #fff;
  padding: 0;
  overflow: hidden;
}

.lv-practical-info__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 18px 8px;
}

.lv-practical-info__title {
  font-size: 16px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.87);
}

.lv-practical-hours {
  border-top: 1px solid #f1f5f9;
}

.lv-practical-hours__summary {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 18px 12px;
  list-style: none;
  cursor: pointer;
}

.lv-practical-hours__summary::-webkit-details-marker {
  display: none;
}

.lv-practical-hours__summary::after {
  content: 'expand_more';
  font-family: 'Material Icons';
  margin-left: auto;
  color: #94a3b8;
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}

.lv-practical-hours[open] .lv-practical-hours__summary::after {
  content: 'expand_less';
}

.lv-practical-hours__icon .lv-mi {
  color: var(--lv-accent-soft, #0ea5e9);
}

.lv-practical-hours__copy {
  flex: 1;
  min-width: 0;
}

.lv-practical-hours__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.87);
}

.lv-practical-hours__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.lv-practical-hours__subtitle {
  font-size: 12px;
  color: #64748b;
}

.lv-practical-hours__body {
  padding: 0 18px 12px 52px;
}

.lv-practical-location {
  padding: 4px 18px 14px;
  border-top: 1px solid #f1f5f9;
}

.lv-practical-location__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.lv-practical-location__icon .lv-mi {
  color: var(--lv-accent-soft, #0ea5e9);
}

.lv-practical-location__copy {
  flex: 1;
  min-width: 0;
}

.lv-practical-location__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.87);
}

.lv-practical-location__text {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.87);
}

.lv-practical-directions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 12px;
  padding: 12px 16px;
  border: 1px solid;
  border-radius: 12px;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}

.lv-practical-directions .lv-mi {
  font-size: 18px;
  color: currentColor;
}

.lv-practical-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 14px;
  border-top: 1px solid #f1f5f9;
  text-decoration: none;
  color: inherit;
}

.lv-practical-phone__icon .lv-mi {
  color: var(--lv-accent-soft, #0ea5e9);
}

.lv-practical-phone__copy {
  flex: 1;
  min-width: 0;
}

.lv-practical-phone__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.87);
}

.lv-practical-phone__value {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 600;
}

.lv-practical-phone > .lv-mi:last-child {
  color: #cbd5e1;
  font-size: 20px;
}