:root {
  --brand: #f97316;
  --brand-dark: #ea580c;
  --brand-soft: #fff7ed;
  --header-dark: #0f1218;
  --bg-soft: #f4f6f9;
  --bg-page: radial-gradient(1200px 600px at 10% -10%, rgba(249, 115, 22, 0.08), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(99, 102, 241, 0.06), transparent 50%),
    #eef1f6;
  --card-border: #e2e8f0;
  --text: #0f172a;
  --muted: #64748b;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-solid: #ffffff;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 12px 40px rgba(15, 23, 42, 0.08);
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --bs-primary: #f97316;
  --bs-primary-rgb: 249, 115, 22;
  --bs-link-color: #ea580c;
  --bs-link-hover-color: #c2410c;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg-soft);
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

.btn-primary {
  background-color: var(--brand);
  border-color: var(--brand);
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--brand-dark);
  border-color: var(--brand-dark);
}

/* ——— Ön yüz: modern marketplace ——— */
.front-marketplace {
  background: var(--bg-page);
  min-height: 100vh;
}

.front-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.front-layout__main {
  flex: 1 0 auto;
  width: 100%;
}

.front-site-header {
  position: sticky;
  top: 0;
  z-index: 1040;
}

.front-site-footer {
  flex-shrink: 0;
  background: #e9ecef;
  color: #212529;
  border-top: 1px solid #dee2e6;
}

.front-footer-logo {
  max-height: 44px;
  max-width: 200px;
  object-fit: contain;
}

.front-footer-links a {
  color: #334155;
  text-decoration: none;
}

.front-footer-links a:hover {
  text-decoration: underline;
  color: #0f172a;
}

.front-footer-disclaimer {
  font-size: 0.8rem;
  line-height: 1.45;
}

/* Footer: ana içerik kolonu ile aynı genişlik (index, bilgi, sayfa → front-main-wrap) */
.front-footer-inner {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* İlan detay: ilan-detail-wrap + container px-3 ile aynı hiza */
body.ilan-detail-page .front-footer-inner {
  max-width: 1180px;
  padding-left: 1rem;
  padding-right: 1rem;
}

.ilan-benzer-card:hover .card {
  box-shadow: 0 0.5rem 1rem rgba(15, 23, 42, 0.1) !important;
}

.front-main-wrap {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 1.5rem));
}

.front-topbar {
  background: linear-gradient(135deg, #1a1f2e 0%, #12151c 100%);
  color: #fff;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: env(safe-area-inset-top, 0);
}

.front-topbar--glass {
  /* backdrop-filter Popper/Bootstrap dropdown konumunu bozar (menü ekranda kayar) */
  background: linear-gradient(135deg, rgba(26, 31, 46, 0.98) 0%, rgba(18, 21, 28, 0.995) 100%);
}

/* Üst çubuk: Kategoriler açılır menüsü tetikleyicinin altında kalsın */
.front-nav-categories {
  position: relative;
}

.front-nav-categories .dropdown-menu {
  z-index: 1060;
}

.front-header-row {
  min-height: 3.35rem;
}

.front-auction-cta {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding-left: 0.95rem;
  padding-right: 0.95rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  animation: frontAuctionPulse 1.15s ease-in-out infinite;
}

.front-auction-cta--static {
  animation: none;
}

.front-auction-cta:hover,
.front-auction-cta:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  text-decoration: none;
}

@keyframes frontAuctionPulse {
  0% {
    opacity: 1;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  }
  50% {
    opacity: 0.88;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.06), 0 16px 40px rgba(0, 0, 0, 0.26);
  }
  100% {
    opacity: 1;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .front-auction-cta {
    animation: none;
  }
}

.front-logo-img {
  height: 42px;
  width: auto;
  max-width: min(168px, 40vw);
  object-fit: contain;
  display: block;
}

.front-search-pill {
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  max-width: 720px;
  margin: 0 auto;
}

.front-search-pill-input {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
  /* iOS: 16px altında odaklanınca sayfa yakınlaşır */
}

@media (max-width: 575.98px) {
  .front-search-pill-input {
    font-size: 16px;
  }
}

.front-search-pill-btn {
  background: transparent;
  border: none;
  padding: 0 1.1rem;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--muted);
}

.front-search-pill-btn:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--brand-dark);
}

.front-landing-hero {
  min-height: calc(100vh - 3.35rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.25rem 0 4rem;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(236, 72, 153, 0.78) 0%, rgba(99, 102, 241, 0.72) 55%, rgba(59, 130, 246, 0.68) 100%),
    radial-gradient(1200px 700px at 20% 20%, rgba(255, 255, 255, 0.18), transparent 60%),
    radial-gradient(1000px 600px at 85% 70%, rgba(0, 0, 0, 0.2), transparent 55%);
}

.front-landing-shell {
  max-width: 1320px;
}

.front-landing-copy {
  max-width: 760px;
}

.front-landing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.front-landing-title {
  font-family: "Outfit", "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
  line-height: 1.1;
}

.front-landing-sub {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
  line-height: 1.7;
}

.front-landing-search {
  width: 100%;
}

.front-landing-highlight-list {
  display: grid;
  gap: 0.75rem;
}

.listing-inquiry-shell {
  display: grid;
  grid-template-columns: minmax(290px, 360px) minmax(0, 1fr);
  gap: 1rem;
  min-height: 72vh;
}

.listing-inquiry-sidebar,
.listing-inquiry-chat {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--card-border);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.listing-inquiry-sidebar {
  display: flex;
  flex-direction: column;
}

.listing-inquiry-sidebar__head,
.listing-inquiry-chat__head {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--card-border);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(255, 255, 255, 0.95));
}

.listing-inquiry-toolbar {
  display: grid;
  gap: 0.75rem;
}

.listing-inquiry-counter-group,
.listing-inquiry-filters,
.listing-inquiry-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.listing-inquiry-search input {
  border-radius: 0.9rem;
  padding-block: 0.6rem;
}

.listing-inquiry-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.85rem;
  overflow: auto;
}

.listing-inquiry-item {
  display: block;
  border-radius: 1rem;
  padding: 0.9rem 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.listing-inquiry-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.listing-inquiry-item.is-unanswered {
  background: linear-gradient(135deg, #111827, #1f2937);
  color: #fff;
}

.listing-inquiry-item.is-unanswered .listing-inquiry-item__title,
.listing-inquiry-item.is-unanswered .listing-inquiry-item__snippet,
.listing-inquiry-item.is-unanswered .listing-inquiry-item__top span,
.listing-inquiry-item.is-unanswered .listing-inquiry-item__meta span:first-child {
  color: rgba(255, 255, 255, 0.82);
}

.listing-inquiry-item.is-answered {
  background: #fff;
  color: var(--text);
  border-color: rgba(226, 232, 240, 0.95);
}

.listing-inquiry-item.is-active {
  border-color: rgba(249, 115, 22, 0.55);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.listing-inquiry-item__top,
.listing-inquiry-item__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.listing-inquiry-item__top {
  margin-bottom: 0.35rem;
  font-size: 0.86rem;
}

.listing-inquiry-item__top span {
  color: var(--muted);
  white-space: nowrap;
}

.listing-inquiry-item__title {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.listing-inquiry-item__snippet {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 0.65rem;
}

.listing-inquiry-item__meta {
  font-size: 0.8rem;
}

.listing-inquiry-chat {
  display: flex;
  flex-direction: column;
}

.listing-inquiry-chat__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.listing-inquiry-chat__body {
  flex: 1 1 auto;
  padding: 1.25rem;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.08), transparent 25%),
    linear-gradient(180deg, #f8fafc, #f1f5f9);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.listing-inquiry-bubble {
  max-width: min(720px, 92%);
  padding: 0.95rem 1rem;
  border-radius: 1.15rem;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
  line-height: 1.6;
}

.listing-inquiry-bubble--incoming {
  align-self: flex-start;
  background: #fff;
  border-top-left-radius: 0.45rem;
}

.listing-inquiry-bubble--reply {
  align-self: flex-end;
  background: #dcfce7;
  border-top-right-radius: 0.45rem;
}

.listing-inquiry-bubble__label,
.listing-inquiry-bubble__time {
  font-size: 0.78rem;
  color: var(--muted);
}

.listing-inquiry-bubble__label {
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.listing-inquiry-bubble__time {
  margin-top: 0.45rem;
}

.listing-inquiry-chat__composer {
  padding: 1rem 1.1rem 1.1rem;
  border-top: 1px solid var(--card-border);
  background: #fff;
}

.listing-inquiry-chat__answered-note {
  padding: 0.75rem 0.9rem;
  margin-bottom: 0.9rem;
  border-radius: 0.9rem;
  background: #fff7ed;
  color: #9a3412;
  font-size: 0.88rem;
}

.listing-inquiry-quick-replies {
  margin-bottom: 0.9rem;
}

.listing-inquiry-quick-btn {
  max-width: 100%;
  text-align: left;
  border-radius: 999px;
}

@media (max-width: 991.98px) {
  .listing-inquiry-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .listing-inquiry-sidebar {
    max-height: 360px;
  }

  .listing-inquiry-chat__head {
    flex-direction: column;
    align-items: flex-start;
  }
}

.front-landing-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.12);
}

.front-landing-highlight-item::before {
  content: "•";
  flex: 0 0 auto;
  font-size: 1.2rem;
  line-height: 1;
}

.front-landing-sidecard {
  padding: 1.3rem;
  border-radius: 1.5rem;
  background: rgba(8, 15, 31, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.front-landing-sidecard__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 1rem;
}

.front-landing-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.front-landing-feature {
  text-align: left;
  padding: 0.85rem 1rem;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
}

.front-landing-feature::before {
  content: "✓";
  display: inline-block;
  margin-right: 0.5rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.front-landing-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.front-landing-stat {
  padding: 0.95rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.front-landing-stat__value {
  font-family: "Outfit", "DM Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.front-landing-stat__label {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
}

.front-landing-stat__note {
  margin-top: 0.2rem;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

.front-landing-searchbar {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.24);
  max-width: 820px;
  margin: 0 auto;
}

.front-landing-input {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0.85rem 1rem;
}

.front-landing-input:first-child {
  max-width: 220px;
}

.front-landing-searchbtn {
  border: none;
  background: transparent;
  padding: 0 1.2rem;
  font-size: 1.35rem;
  line-height: 1;
  color: #475569;
}

.front-landing-searchbtn:hover {
  background: rgba(15, 23, 42, 0.06);
  color: var(--brand-dark);
}

@media (max-width: 575.98px) {
  .front-landing-searchbar {
    flex-direction: column;
    border-radius: 1.25rem;
  }
  .front-landing-input:first-child {
    max-width: 100%;
  }
  .front-landing-searchbtn {
    padding: 0.9rem 1.2rem;
    text-align: center;
  }
  .front-landing-feature-grid {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
  .front-landing-stats {
    grid-template-columns: 1fr;
  }
}

.front-landing-section {
  padding: 4.5rem 0;
}

.front-landing-section--soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 247, 237, 0.9));
}

.front-landing-section--compact {
  padding-top: 1rem;
  padding-bottom: 4.5rem;
}

.front-landing-content {
  max-width: 1320px;
}

.front-landing-sectionhead {
  max-width: 840px;
  margin-bottom: 2rem;
}

.front-landing-kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--brand-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.front-landing-h2 {
  font-family: "Outfit", "DM Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.14;
  color: var(--text);
}

.front-landing-muted {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.front-landing-card,
.front-landing-module,
.front-landing-cta {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

.front-landing-card {
  padding: 1.4rem;
  border-radius: 1.25rem;
}

.front-landing-card--accent {
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
}

.front-landing-card__title {
  font-family: "Outfit", "DM Sans", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.front-landing-card__text {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0.9rem;
}

.front-landing-icon-card {
  padding: 1.3rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

.front-landing-icon-card__icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.95rem;
  background: linear-gradient(135deg, #1e293b, #ea580c);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.front-landing-icon-card__title {
  font-family: "Outfit", "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.front-landing-icon-card__text {
  color: var(--muted);
  line-height: 1.65;
}

.front-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.front-counter-card {
  padding: 1.25rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.94);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
  text-align: center;
}

.front-counter-card__value {
  font-family: "Outfit", "DM Sans", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
}

.front-counter-card__label {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.front-logo-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.9rem;
}

.front-logo-strip__item {
  min-height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(226, 232, 240, 0.94);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.05);
  color: #334155;
  font-family: "Outfit", "DM Sans", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  text-align: center;
}

.front-landing-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.front-landing-list li {
  position: relative;
  padding-left: 1.35rem;
  color: #334155;
  line-height: 1.55;
}

.front-landing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #fb923c, #f97316);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.front-landing-modules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.front-landing-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.front-landing-matrix__item {
  padding: 1.15rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.94);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.front-landing-matrix__icon {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, #0f172a, #f97316);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 0.9rem;
}

.front-landing-matrix__icon svg {
  width: 1.45rem;
  height: 1.45rem;
  display: block;
}

.front-landing-matrix__title {
  font-family: "Outfit", "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.45rem;
}

.front-landing-matrix__text {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.front-landing-previews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.front-landing-preview {
  padding: 1.35rem;
  border-radius: 1.3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 237, 0.88));
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.07);
}

.front-landing-preview__top {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: flex-start;
}

.front-landing-preview__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 0.45rem;
}

.front-landing-preview__title {
  font-family: "Outfit", "DM Sans", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0;
}

.front-landing-preview__signal {
  white-space: nowrap;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  color: #0f172a;
  font-size: 0.72rem;
  font-weight: 700;
}

.front-landing-preview__text {
  color: var(--muted);
  line-height: 1.65;
  margin-top: 0.9rem;
  margin-bottom: 0.9rem;
}

.front-landing-preview__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.95rem;
}

.front-landing-preview__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  color: var(--brand-dark);
  font-size: 0.74rem;
  font-weight: 700;
}

.front-landing-preview__screen {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  padding: 0.85rem;
  border-radius: 1rem;
  background: #0f172a;
}

.front-landing-preview__stat {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.55rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

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

.front-showcase-card {
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.94);
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.front-showcase-card__browser {
  display: flex;
  gap: 0.45rem;
  padding: 0.85rem 1rem;
  background: #e2e8f0;
}

.front-showcase-card__browser span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: #94a3b8;
}

.front-showcase-card__body {
  padding: 1.2rem;
}

.front-showcase-card__header {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
}

.front-showcase-card__eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 0.45rem;
}

.front-showcase-card__title {
  font-family: "Outfit", "DM Sans", sans-serif;
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1.28;
  margin-bottom: 0;
}

.front-showcase-card__badge {
  white-space: nowrap;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  color: #0f172a;
  font-size: 0.72rem;
  font-weight: 700;
}

.front-showcase-card__text {
  margin: 0.9rem 0 1rem;
  color: var(--muted);
  line-height: 1.65;
}

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

.front-showcase-card__metric {
  padding: 0.85rem 0.7rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(226, 232, 240, 0.85);
}

.front-showcase-card__metricvalue {
  font-family: "Outfit", "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.front-showcase-card__metriclabel {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.front-showcase-card__wire {
  margin-top: 1rem;
  padding: 0.95rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.04);
}

.front-showcase-card__wireline {
  height: 0.72rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(148, 163, 184, 0.45), rgba(203, 213, 225, 0.9));
}

.front-showcase-card__wireline + .front-showcase-card__wireline {
  margin-top: 0.65rem;
}

.front-showcase-card__wireline.w-90 {
  width: 90%;
}

.front-showcase-card__wireline.w-70 {
  width: 70%;
}

.front-showcase-card__wiregrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.front-showcase-card__wiregrid span {
  display: block;
  min-height: 4.25rem;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(226, 232, 240, 0.92);
}

.front-showcase-card--orange {
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
}

.front-showcase-card--dark {
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
}

.front-showcase-card--slate {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.front-compare-tablewrap {
  overflow-x: auto;
  padding: 0.25rem;
}

.front-compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.94);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.front-compare-table th,
.front-compare-table td {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.88);
  text-align: left;
  vertical-align: middle;
}

.front-compare-table thead th {
  background: #0f172a;
  color: #f8fafc;
  font-family: "Outfit", "DM Sans", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  border-bottom: none;
}

.front-compare-table tbody tr:nth-child(even) td {
  background: rgba(248, 250, 252, 0.9);
}

.front-compare-table tbody tr:last-child td {
  border-bottom: none;
}

.front-compare-table tbody td:first-child {
  font-weight: 700;
  color: #0f172a;
}

.front-landing-module {
  padding: 1.5rem;
  border-radius: 1.3rem;
}

.front-landing-module__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 0.6rem;
}

.front-landing-module__title {
  font-family: "Outfit", "DM Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.65rem;
}

.front-landing-module__lead {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.front-landing-steps {
  display: grid;
  gap: 1rem;
}

.front-landing-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 1.2rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.front-landing-step__index {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #ea580c, #f97316);
  color: #fff;
  font-family: "Outfit", "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 12px 30px rgba(234, 88, 12, 0.24);
}

.front-landing-step__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.front-landing-step__text {
  color: var(--muted);
  line-height: 1.65;
}

.front-landing-mockup {
  border-radius: 1.5rem;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.11);
}

.front-landing-mockup__topbar {
  display: flex;
  gap: 0.45rem;
  padding: 0.85rem 1rem;
  background: #e2e8f0;
}

.front-landing-mockup__topbar span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: #94a3b8;
}

.front-landing-mockup__body {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 430px;
}

.front-landing-mockup__sidebar {
  padding: 1rem;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.front-landing-mockup__navitem {
  padding: 0.75rem 0.9rem;
  border-radius: 0.9rem;
  color: rgba(241, 245, 249, 0.8);
  font-size: 0.88rem;
  font-weight: 600;
}

.front-landing-mockup__navitem + .front-landing-mockup__navitem {
  margin-top: 0.45rem;
}

.front-landing-mockup__navitem.is-active {
  background: rgba(249, 115, 22, 0.15);
  color: #fff;
}

.front-landing-mockup__content {
  padding: 1.1rem;
}

.front-landing-mockup__hero {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 1.15rem;
  background: linear-gradient(135deg, #fff7ed, #ffffff);
  border: 1px solid rgba(251, 146, 60, 0.18);
}

.front-landing-mockup__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.front-landing-mockup__headline {
  margin-top: 0.35rem;
  font-family: "Outfit", "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.25;
}

.front-landing-mockup__cta {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.front-landing-mockup__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.front-landing-mockup__stat {
  padding: 0.9rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
}

.front-landing-mockup__statvalue {
  font-family: "Outfit", "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
}

.front-landing-mockup__statlabel {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.front-landing-mockup__panels {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  margin-top: 1rem;
}

.front-landing-mockup__panel {
  padding: 1rem;
  border-radius: 1.1rem;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
}

.front-landing-mockup__paneltitle {
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.front-landing-mockup__line {
  height: 0.72rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #e2e8f0, #cbd5e1);
}

.front-landing-mockup__line + .front-landing-mockup__line {
  margin-top: 0.65rem;
}

.front-landing-mockup__line.w-85 {
  width: 85%;
}

.front-landing-mockup__line.w-75 {
  width: 75%;
}

.front-landing-mockup__line.w-65 {
  width: 65%;
}

.front-landing-mockup__chart {
  display: flex;
  align-items: end;
  gap: 0.5rem;
  min-height: 120px;
}

.front-landing-mockup__chart span {
  flex: 1 1 0;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #fb923c, #ea580c);
}

.front-landing-mockup__chart .h-40 {
  height: 40px;
}

.front-landing-mockup__chart .h-55 {
  height: 55px;
}

.front-landing-mockup__chart .h-60 {
  height: 60px;
}

.front-landing-mockup__chart .h-70 {
  height: 70px;
}

.front-landing-mockup__chart .h-85 {
  height: 85px;
}

.front-pricing-card {
  position: relative;
  padding: 1.45rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

.front-pricing-card--featured {
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 24px 60px rgba(234, 88, 12, 0.12);
}

.front-pricing-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  margin-bottom: 0.95rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  color: var(--brand-dark);
  font-size: 0.75rem;
  font-weight: 700;
}

.front-pricing-card__title {
  font-family: "Outfit", "DM Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.front-pricing-card__price {
  font-family: "Outfit", "DM Sans", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.front-pricing-card__summary {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.front-pricing-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.front-faq-accordion {
  max-width: 980px;
  margin: 0 auto;
}

.front-faq-item {
  border: 1px solid rgba(226, 232, 240, 0.95) !important;
  border-radius: 1rem !important;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.05);
}

.front-faq-item + .front-faq-item {
  margin-top: 0.85rem;
}

.front-faq-item .accordion-button {
  font-weight: 700;
  box-shadow: none !important;
}

.front-faq-item .accordion-button:not(.collapsed) {
  background: #fff7ed;
  color: #9a3412;
}

.front-faq-item .accordion-body {
  color: var(--muted);
  line-height: 1.7;
}

.panel-package-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(249, 115, 22, 0.18);
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}

.panel-package-banner__title {
  font-weight: 700;
  color: #9a3412;
}

.panel-package-banner__meta {
  margin-top: 0.2rem;
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.45;
}

.front-landing-cta {
  max-width: 980px;
  padding: 2rem 1.5rem;
  border-radius: 1.5rem;
}

.front-sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 1200;
  width: min(1100px, calc(100% - 1.5rem));
  transform: translateX(-50%) translateY(120%);
  transition: transform 0.22s ease, opacity 0.22s ease;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(226, 232, 240, 0.96);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(12px);
}

.front-sticky-cta.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.front-sticky-cta__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  color: #475569;
  font-size: 0.84rem;
  line-height: 1.45;
}

.front-sticky-cta__text strong {
  color: #0f172a;
  font-size: 0.95rem;
}

.front-sticky-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

@media (max-width: 991.98px) {
  .front-landing-section {
    padding: 3.5rem 0;
  }

  .front-landing-modules {
    grid-template-columns: 1fr;
  }

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

  .front-landing-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .front-landing-previews {
    grid-template-columns: 1fr;
  }

  .front-showcase-grid {
    grid-template-columns: 1fr;
  }

  .front-logo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .front-landing-mockup__body {
    grid-template-columns: 1fr;
  }

  .front-landing-mockup__sidebar {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .front-landing-mockup__navitem + .front-landing-mockup__navitem {
    margin-top: 0;
  }

  .front-landing-mockup__stats,
  .front-landing-mockup__panels {
    grid-template-columns: 1fr;
  }

  .front-sticky-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .front-sticky-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 575.98px) {
  .front-landing-mockup__sidebar {
    grid-template-columns: 1fr 1fr;
  }

  .front-landing-matrix {
    grid-template-columns: 1fr;
  }

  .front-counter-grid,
  .front-logo-strip {
    grid-template-columns: 1fr;
  }

  .front-landing-mockup__hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .front-landing-mockup__stats {
    grid-template-columns: 1fr 1fr;
  }

  .front-landing-preview__top {
    flex-direction: column;
  }

  .front-landing-preview__screen {
    grid-template-columns: 1fr;
  }

  .front-showcase-card__header,
  .front-showcase-card__metrics {
    grid-template-columns: 1fr;
  }

  .front-showcase-card__header {
    display: block;
  }

  .front-showcase-card__badge {
    display: inline-flex;
    margin-top: 0.65rem;
  }

  .front-showcase-card__wiregrid {
    grid-template-columns: 1fr;
  }

  .front-sticky-cta {
    bottom: 0.75rem;
    width: calc(100% - 1rem);
    padding: 0.85rem;
  }

  .front-sticky-cta__actions {
    flex-direction: column;
  }

  .front-sticky-cta__actions .btn {
    width: 100%;
  }
}

.front-promo-banner {
  background: linear-gradient(105deg, #ffedd5 0%, #fdba74 45%, #f97316 100%);
  color: #431407;
  border-bottom: 1px solid rgba(234, 88, 12, 0.15);
}

.front-promo-banner--modern {
  background: linear-gradient(120deg, #0f172a 0%, #1e293b 38%, #c2410c 92%, #ea580c 100%);
  color: #f8fafc;
  border-bottom: none;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.2);
}

.front-promo-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.65);
}

.front-promo-headline {
  font-family: "Outfit", "DM Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
}

.front-promo-lead {
  font-size: 0.9rem;
  color: rgba(248, 250, 252, 0.78);
  max-width: 36rem;
}

.front-promo-cta {
  border-radius: 999px;
  font-weight: 600;
  padding: 0.45rem 1.15rem;
  border: none;
}

.front-promo-cta--dark {
  background: rgba(15, 23, 42, 0.55);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.front-promo-cta--dark:hover {
  background: rgba(15, 23, 42, 0.75);
  color: #fff !important;
}

.front-promo-cta--light {
  background: #fff;
  color: #c2410c !important;
}

.front-promo-cta--light:hover {
  background: #fff7ed;
  color: #9a3412 !important;
}

.front-promo-title {
  color: #7c2d12;
}

.front-promo-close {
  position: absolute;
  top: 0.5rem;
  right: 0.65rem;
  z-index: 2;
  font-size: 0.7rem;
  color: rgba(248, 250, 252, 0.7);
  opacity: 0.9;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  background: rgba(15, 23, 42, 0.35);
}

.front-promo-close:hover {
  opacity: 1;
  color: #fff;
  background: rgba(15, 23, 42, 0.5);
}

.front-promo-banner--modern .front-promo-close {
  color: rgba(248, 250, 252, 0.85);
}

.front-glass-card {
  background: var(--surface);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-sm);
}

.front-chip-row {
  gap: 0.5rem !important;
}

.front-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--muted);
  background: var(--surface-solid);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.front-chip:hover {
  color: var(--brand-dark);
  border-color: rgba(249, 115, 22, 0.35);
  transform: translateY(-1px);
}

.front-chip--active {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
}

.front-section-title {
  font-family: "Outfit", "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.front-section-sub {
  font-size: 0.8rem;
}

.front-empty-state {
  border-radius: var(--radius-xl) !important;
  background: var(--surface-solid);
}

.front-empty-icon {
  width: 3rem;
  height: 3rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  color: var(--brand-dark);
  font-size: 1.25rem;
}

.front-empty-text {
  max-width: 420px;
}

.front-side-quick-wrap .front-quick-link {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.8rem;
  color: #334155;
  text-decoration: none;
  border-bottom: 1px solid #f1f5f9;
}

.front-side-quick-wrap .front-quick-link:hover {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.front-side-quick-wrap .front-quick--active {
  background: #fff7ed;
  font-weight: 600;
  color: var(--brand-dark);
  box-shadow: inset 3px 0 0 var(--brand);
}

.front-side-quick-wrap .front-quick--emergency {
  font-weight: 600;
}

.front-side-quick-wrap .front-quick--all {
  border-bottom: none;
  color: #64748b;
}

.offcanvas-front-filters .front-side-cats.sticky-lg-top {
  position: static;
  top: auto;
}

.front-mobile-menu-btn {
  min-height: 2.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

/* Ana vitrin: büyük ekranda 8 sütun × 10 satıra kadar (80 ilan, index.php LIMIT) */
.front-vitrin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

@media (min-width: 400px) {
  .front-vitrin-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 480px) {
  .front-vitrin-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 576px) {
  .front-vitrin-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.55rem;
  }
}

@media (min-width: 768px) {
  .front-vitrin-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .front-vitrin-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.55rem;
  }
}

@media (min-width: 1200px) {
  .front-vitrin-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 0.55rem;
  }
}

.front-vitrin-cell {
  min-width: 0;
}

.front-video-row {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scroll-snap-type: x proximity;
}

.front-video-row .front-vitrin-cell {
  flex: 0 0 calc((100% - 0.5rem) / 2);
  scroll-snap-align: start;
}

@media (min-width: 400px) {
  .front-video-row .front-vitrin-cell {
    flex-basis: calc((100% - 1rem) / 3);
  }
}

@media (min-width: 480px) {
  .front-video-row .front-vitrin-cell {
    flex-basis: calc((100% - 1.5rem) / 4);
  }
}

@media (min-width: 576px) {
  .front-video-row {
    gap: 0.55rem;
  }
  .front-video-row .front-vitrin-cell {
    flex-basis: calc((100% - 2.2rem) / 5);
  }
}

@media (min-width: 768px) {
  .front-video-row .front-vitrin-cell {
    flex-basis: calc((100% - 2.75rem) / 6);
  }
}

@media (min-width: 992px) {
  .front-video-row .front-vitrin-cell {
    flex-basis: calc((100% - 3.3rem) / 7);
  }
}

@media (min-width: 1200px) {
  .front-video-row .front-vitrin-cell {
    flex-basis: calc((100% - 3.85rem) / 8);
  }
}

.front-home-videos {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.front-home-videos__controls {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.front-home-videos__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.front-home-videos__dots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.front-home-videos__dot {
  width: 0.62rem;
  height: 0.62rem;
  border: none;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.5);
  padding: 0;
  transition: transform 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.front-home-videos__dot.is-active {
  background: #f97316;
  transform: scale(1.15);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.16);
}

.front-home-videos__active {
  font-size: 0.78rem;
  font-weight: 700;
  color: #475569;
}

.front-home-videos__nav {
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  font-size: 1.2rem;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.front-home-videos__nav:hover {
  border-color: rgba(249, 115, 22, 0.35);
  color: #c2410c;
}

.front-home-videos__scroller {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 1rem) / 2);
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scroll-snap-type: x proximity;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.front-home-videos__scroller.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.front-home-videos__scroller::-webkit-scrollbar {
  height: 8px;
}

.front-home-videos__scroller::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.55);
  border-radius: 999px;
}

@media (min-width: 768px) {
  .front-home-videos__scroller {
    grid-auto-columns: calc((100% - 1.5rem) / 3);
  }
}

@media (min-width: 1200px) {
  .front-home-videos__scroller {
    grid-auto-columns: calc((100% - 2.25rem) / 4);
  }
}

.front-home-video-card {
  min-width: 0;
  scroll-snap-align: start;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 0.95rem;
  background: #fff;
  overflow: hidden;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.front-home-video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
  border-color: rgba(249, 115, 22, 0.3);
}

.front-home-video-card.is-active {
  border-color: rgba(249, 115, 22, 0.55);
  box-shadow: 0 20px 38px rgba(249, 115, 22, 0.14);
}

.front-home-video-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #0f172a;
}

.front-home-video-card__media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.front-home-video-card__badge {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  background: rgba(15, 23, 42, 0.78);
  color: #fff;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 600;
}

.front-home-video-card__pin {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  color: #f97316;
  font-size: 1.15rem;
  line-height: 1;
  text-shadow: 0 3px 12px rgba(15, 23, 42, 0.42);
}

.front-home-video-card__body {
  padding: 0.7rem 0.8rem 0.85rem;
}

.front-home-video-card__title {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
}

.front-home-video-card__desc {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.35;
  margin-top: 0.35rem;
}

.front-home-video-card__cta {
  margin-top: 0.55rem;
  font-size: 0.73rem;
  font-weight: 700;
  color: #c2410c;
}

.ilan-video-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.ilan-video-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  color: #0f172a;
  font-size: 0.74rem;
  font-weight: 700;
}

.ilan-video-shell {
  border-radius: 1rem;
  background: #0f172a;
  padding: 0.55rem;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.ilan-video-player {
  display: block;
  background: #020617;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.ilan-video-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.65rem;
}

.ilan-video-preview-note {
  color: rgba(226, 232, 240, 0.92);
  font-size: 0.76rem;
  font-weight: 600;
}

.front-vitrin-all {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-dark) !important;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.1);
}

.front-vitrin-all:hover {
  background: rgba(249, 115, 22, 0.18);
  color: #9a3412 !important;
}

.front-liste-filters .form-label {
  font-weight: 500;
}

/* Liste modu: admin portföy benzeri tablo + 48×36 küçük görsel */
.front-liste-table-wrap {
  border-radius: 0.5rem;
}

.front-liste-table thead th {
  font-weight: 600;
  border-bottom-width: 1px;
}

.front-liste-table tbody tr:hover {
  background: rgba(249, 115, 22, 0.06);
}

.front-liste-td-thumb {
  width: 56px;
  vertical-align: middle;
}

.front-liste-td-thumb img {
  display: block;
  vertical-align: middle;
}

.front-liste-thumb-ph {
  width: 48px;
  height: 36px;
  min-width: 48px;
}

.front-liste-title-link:hover {
  color: var(--brand-dark, #c2410c) !important;
  text-decoration: underline !important;
}

.front-logo-badge {
  background: var(--brand);
  color: #fff;
  padding: 0.38rem 0.78rem;
  border-radius: 0.38rem;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.front-search .form-control:focus {
  box-shadow: none;
  border-color: #ced4da;
}

.front-search-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.btn-ilan-ver {
  background: var(--brand);
  color: #fff !important;
  border: none;
  border-radius: 0.35rem;
  white-space: nowrap;
}
.btn-ilan-ver:hover {
  background: var(--brand-dark);
  color: #fff !important;
}

.front-side-cats {
  font-size: 0.875rem;
}

.front-cat-root {
  color: inherit;
}
.front-cat-root:hover {
  background: var(--brand-soft);
}
.front-cat-root.is-active {
  background: var(--brand-soft);
  box-shadow: inset 3px 0 0 var(--brand);
}

.front-cat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  flex-shrink: 0;
  background: #eef2f7;
  color: #334155;
}
.front-cat-icon::before {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  background: currentColor;
  -webkit-mask-image: var(--front-cat-icon-svg);
  mask-image: var(--front-cat-icon-svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.front-cat-icon--emlak {
  background: #fff7ed;
  color: #c2410c;
  --front-cat-icon-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 3.2 2.5 11.3l1.4 1.4 1.6-1.4V21h5.8v-6.1h1.5V21H18.5v-9.7l1.6 1.4 1.4-1.4L12 3.2Zm5 16.3h-2.7v-6.1H9.7v6.1H7v-9.8L12 5.6l5 4.1v9.8Z'/%3E%3C/svg%3E");
}
.front-cat-icon--vasita {
  background: #fef2f2;
  color: #b91c1c;
  --front-cat-icon-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M7.1 16.8a2.1 2.1 0 1 0 0 4.2 2.1 2.1 0 0 0 0-4.2Zm9.8 0a2.1 2.1 0 1 0 0 4.2 2.1 2.1 0 0 0 0-4.2ZM6.2 6.5h11.6c.9 0 1.7.6 1.9 1.5l1.2 4.2c.1.2.1.4.1.6V16c0 .6-.5 1.1-1.1 1.1H20a3.6 3.6 0 0 0-6.9 0H11a3.6 3.6 0 0 0-6.9 0H3.1C2.5 17.1 2 16.6 2 16v-3.6c0-.2 0-.4.1-.6L3.3 8c.2-.9 1-1.5 1.9-1.5Zm.2 1.6c-.2 0-.4.1-.4.3l-1.1 3.7h14.2l-1.1-3.7c-.1-.2-.2-.3-.4-.3H6.4ZM3.6 15.6h.4c.5-.9 1.4-1.6 2.5-1.6s2 .6 2.5 1.6h4c.5-.9 1.4-1.6 2.5-1.6s2 .6 2.5 1.6h.4v-2H3.6v2Z'/%3E%3C/svg%3E");
}
.front-cat-icon--other {
  background: linear-gradient(135deg, #fdba74, #f97316);
}

.front-cat-sublink {
  color: #334155;
}
.front-cat-sublink:hover {
  color: var(--brand-dark);
}
.front-cat-sublink--active {
  color: var(--brand-dark) !important;
}

.front-cat-note {
  color: #15803d;
  line-height: 1.35;
}

.front-cat-show-all {
  color: var(--brand-dark);
  background: var(--brand-soft);
}
.front-cat-show-all:hover {
  background: #ffedd5;
  color: #c2410c;
}

.front-card-media {
  position: relative;
  overflow: hidden;
  border-radius: 0.4rem 0.4rem 0 0;
  z-index: 0;
}

.front-card-badge {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  z-index: 2;
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.1rem 0.28rem;
  border-radius: 0.2rem;
  background: rgba(15, 23, 42, 0.82);
  color: #f8fafc;
}

.front-card-photo-pill {
  position: absolute;
  bottom: 0.22rem;
  right: 0.22rem;
  z-index: 2;
  font-size: 0.45rem;
  font-weight: 600;
  padding: 0.08rem 0.26rem;
  border-radius: 0.2rem;
  background: rgba(15, 23, 42, 0.78);
  color: #f1f5f9;
}

/* Vitrin kartı — çoklu görsel mozaik (tek sorguyla yüklenen galeri) */
.front-card-mosaic {
  display: grid;
  gap: 2px;
  aspect-ratio: 1;
  background: #e2e8f0;
  border-radius: 0.4rem 0.4rem 0 0;
  overflow: hidden;
}

.front-card-mosaic--1 {
  grid-template: 1fr / 1fr;
}

.front-card-mosaic--2 {
  grid-template: 1fr / 1fr 1fr;
}

.front-card-mosaic--3 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.front-card-mosaic--3 .front-card-mosaic__tile:nth-child(3) {
  grid-column: 1 / -1;
}

.front-card-mosaic--4 {
  grid-template: 1fr 1fr / 1fr 1fr;
}

.front-card-mosaic__tile {
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.front-card-mosaic__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.front-card-mosaic__tile--dim .front-card-mosaic__more {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.52);
  color: #f8fafc;
  font-weight: 700;
  font-size: 0.72rem;
  z-index: 1;
}

.card-ilan--vitrin .thumb {
  aspect-ratio: 1;
}

.card-ilan--vitrin {
  border: 1px solid #e2e8f0;
  border-radius: 0.4rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.card-ilan--vitrin:hover {
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.09);
  transform: translateY(-1px);
  border-color: rgba(249, 115, 22, 0.35);
}

.front-card-body {
  padding: 0.35rem 0.4rem 0.45rem;
}

.front-card-cat {
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand-dark);
  margin-bottom: 0.12rem;
  opacity: 0.88;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-ilan--vitrin .vitrin-title {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 1.55rem;
  margin-bottom: 0.12rem;
}

.front-card-meta {
  font-size: 0.58rem;
  color: var(--muted);
  margin-bottom: 0.12rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-ilan--vitrin .front-card-price {
  font-size: 0.68rem;
  font-weight: 700;
  margin-top: 0;
  letter-spacing: -0.02em;
}

.tiny {
  font-size: 0.7rem;
}

@media (max-width: 767.98px) {
  .front-search {
    width: 100%;
  }
  .front-chip-row {
    margin-top: 0.25rem;
  }
  .front-chip {
    min-height: 2.5rem;
    align-items: center;
  }
}

.auth-form-mobile .form-control {
  font-size: 16px;
}

.panel-mobile-topbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  padding-top: max(0.5rem, env(safe-area-inset-top, 0.5rem));
  padding-left: max(0.75rem, env(safe-area-inset-left, 0.75rem));
  padding-right: max(0.75rem, env(safe-area-inset-right, 0.75rem));
  background: linear-gradient(135deg, #1e2229 0%, #141820 100%);
  border-bottom: 1px solid rgba(249, 115, 22, 0.15);
  z-index: 1030;
}

.panel-mobile-topbar .btn-menu {
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
  padding: 0.35rem 0.65rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
}

.panel-mobile-topbar .btn-menu:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.panel-offcanvas-nav {
  background: linear-gradient(180deg, #1e2229 0%, #141820 100%);
  color: #e2e8f0;
}

.panel-offcanvas-nav .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-offcanvas-nav .offcanvas-title {
  color: #f1f5f9;
}

.panel-offcanvas-nav nav a {
  color: #cbd5e1;
  text-decoration: none;
  display: block;
  padding: 0.65rem 1rem;
  border-radius: 0.5rem;
  border-left: 3px solid transparent;
}

.panel-offcanvas-nav nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.panel-offcanvas-nav nav a.active {
  background: rgba(249, 115, 22, 0.12);
  color: #fff;
  border-left-color: var(--brand);
}

.navbar-brand.fw-bold {
  letter-spacing: -0.02em;
}

.front-hero {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: #fff;
  border-radius: 0 0 1.25rem 1.25rem;
}

.card-ilan {
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  background: var(--surface-solid);
}

.card-ilan:hover {
  border-color: rgba(249, 115, 22, 0.25);
}

.card-ilan .thumb {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
  background: #e2e8f0;
}

.badge-tip {
  background: rgba(255, 106, 0, 0.12);
  color: var(--brand-dark);
  font-weight: 600;
}

.price-tag {
  font-weight: 700;
  color: var(--brand-dark);
  font-size: 1.1rem;
}

.panel-sidebar {
  min-height: 100vh;
  background: linear-gradient(180deg, #1e2229 0%, #141820 100%);
  color: #e2e8f0;
  border-right: 1px solid rgba(249, 115, 22, 0.15);
}

.panel-sidebar a {
  color: #cbd5e1;
  text-decoration: none;
  display: block;
  padding: 0.55rem 1rem;
  border-radius: 0.5rem;
  border-left: 3px solid transparent;
}

.panel-sidebar a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.panel-sidebar a.active {
  background: rgba(249, 115, 22, 0.12);
  color: #fff;
  border-left-color: var(--brand);
}

.panel-sidebar--compact a {
  padding-top: 0.42rem;
  padding-bottom: 0.42rem;
}

.panel-offcanvas-nav--compact nav a {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.panel-content {
  min-height: 100vh;
  padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 1.5rem));
}

.stat-card {
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
  padding: 1rem 1.15rem;
  background: #fff;
}

.stat-card--accent {
  border-left: 4px solid transparent;
  box-shadow: 0 0.15rem 0.65rem rgba(15, 23, 42, 0.06);
}

.stat-card--accent-slate {
  border-left-color: #64748b;
}

.stat-card--accent-brand {
  border-left-color: var(--brand, #f97316);
}

.stat-card--accent-teal {
  border-left-color: #0d9488;
}

.stat-card--accent-violet {
  border-left-color: #7c3aed;
}

.stat-card__glyph {
  font-size: 1.75rem;
  line-height: 1;
  opacity: 0.2;
  font-weight: 700;
  user-select: none;
}

.admin-dash-hero {
  position: relative;
  background: linear-gradient(125deg, #1e293b 0%, #0f172a 55%, #1e1b4b 100%);
}

.admin-dash-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(249, 115, 22, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(99, 102, 241, 0.15), transparent 50%);
  pointer-events: none;
}

.admin-dash-hero .card-body {
  position: relative;
  z-index: 1;
}

.admin-dash-hero__eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.85;
}

.admin-dash-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 5.5rem;
  padding: 0.85rem 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--card-border);
  background: #fff;
  color: #0f172a;
  font-weight: 600;
  font-size: 0.8rem;
  text-align: center;
  position: relative;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.admin-dash-tile:hover {
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 0.35rem 1rem rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
  color: #0f172a;
}

.admin-dash-tile__icon {
  font-size: 1.35rem;
  line-height: 1;
}

.admin-dash-tile__label {
  line-height: 1.2;
}

.admin-dash-tile__badge {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--brand, #f97316);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.25rem;
  text-align: center;
}

.admin-dash-tiles {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.admin-dash-tiles--compact .admin-dash-tile {
  flex: 0 0 122px;
  width: 122px;
  min-height: 4.65rem;
  padding: 0.6rem 0.45rem;
  font-size: 0.75rem;
}

.admin-dash-tiles--compact .admin-dash-tile__icon {
  font-size: 1.2rem;
}

.admin-dash-mini {
  border-left: 3px solid rgba(249, 115, 22, 0.35);
}

.admin-dash-panel .card-header {
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.company-dashboard {
  gap: 1.25rem;
}

.company-dash-hero {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 58%, #1d4ed8 100%);
}

.company-dash-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.24), transparent 34%),
    radial-gradient(circle at bottom left, rgba(14, 165, 233, 0.18), transparent 40%);
  pointer-events: none;
}

.company-dash-hero .card-body {
  position: relative;
  z-index: 1;
}

.company-dash-hero__eyebrow,
.company-section-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.company-dash-hero__eyebrow {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.5rem;
}

.company-section-eyebrow {
  color: #64748b;
  margin-bottom: 0.35rem;
}

.company-dash-hero__copy {
  max-width: 38rem;
}

.company-hero-stat {
  height: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.company-hero-stat__label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.company-hero-stat__value {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 0.4rem;
}

.company-hero-stat__meta {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  margin-top: 0.25rem;
}

.company-kpi-card {
  padding: 0.9rem 1rem;
}

.company-kpi-card .fs-4 {
  font-size: 1.55rem !important;
}

.company-kpi-card__glyph {
  font-size: 1.05rem;
  line-height: 1;
  padding: 0.45rem 0.5rem;
  border-radius: 0.75rem;
  background: rgba(15, 23, 42, 0.05);
  opacity: 1;
}

.company-panel-card {
  border-radius: 1rem;
}

.company-progress-stack {
  display: grid;
  gap: 1rem;
}

.company-progress-item {
  display: grid;
  gap: 0.4rem;
}

.company-progress-bar,
.company-bar-chart__track {
  height: 0.62rem;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.company-progress-bar span,
.company-bar-chart__track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--tone, var(--brand, #f97316));
}

.company-mini-chart {
  padding: 1rem;
  border-radius: 0.9rem;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.company-bar-chart {
  display: grid;
  gap: 0.9rem;
}

.company-mini-chart__footer {
  margin-top: 1rem;
}

.company-gauge-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 0.9rem;
  border-radius: 0.9rem;
  background: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.company-gauge {
  --value-angle: calc(var(--value, 0) * 3.6deg);
  --tone: var(--brand, #f97316);
  flex: 0 0 78px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background:
    radial-gradient(closest-side, #fff 67%, transparent 68% 100%),
    conic-gradient(var(--tone) 0deg var(--value-angle), #dbe4f0 var(--value-angle) 360deg);
  display: grid;
  place-items: center;
}

.company-gauge__ring {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.18);
}

.company-gauge__ring span {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

.company-note-card {
  padding: 0.95rem 1rem;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(37, 99, 235, 0.06));
  border: 1px solid rgba(249, 115, 22, 0.12);
}

.company-note-card__label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  font-weight: 700;
}

.company-note-card__value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 0.35rem;
}

@media (max-width: 991.98px) {
  .company-gauge-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  .company-dash-hero .card-body {
    padding: 1.1rem !important;
  }

  .company-hero-stat {
    padding: 0.85rem 0.9rem;
  }

  .company-kpi-card {
    padding: 0.85rem 0.9rem;
  }

  .company-mini-chart,
  .company-gauge-card,
  .company-note-card {
    padding: 0.85rem;
  }
}

.table-mobile {
  font-size: 0.9rem;
}

@media (max-width: 767.98px) {
  .panel-sidebar {
    min-height: auto;
  }
  .table-responsive-stack td:before {
    content: attr(data-label);
    font-weight: 600;
    display: block;
    color: var(--muted);
    font-size: 0.75rem;
  }
}

.print-only {
  display: none;
}

@media print {
  .no-print {
    display: none !important;
  }
  .print-only {
    display: block !important;
  }
  body {
    background: #fff;
  }
}

/* ——— Araç boya / hasar şeması ——— */
.oto-hasar__sw {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.oto-hasar__sw--orijinal {
  background: #e0e0e0;
}

.oto-hasar__sw--lokal {
  background: #ea580c;
}

.oto-hasar__sw--boya {
  background: #2563eb;
}

.oto-hasar__sw--degisen {
  background: #dc2626;
}

.oto-hasar--edit .oto-hasar__svg-wrap svg .oto-hs {
  cursor: pointer;
}

.oto-hasar__svg-wrap--car {
  background: linear-gradient(180deg, #fffdf7 0%, #fff9ed 100%);
  border: 1px solid rgba(234, 88, 12, 0.35);
  border-radius: 6px;
}

.oto-hasar-car-svg {
  display: block;
  max-height: 360px;
  margin: 0 auto;
}

/* Sahibinden vehicle_plan.png tabanı + SVG tıklama katmanı (311×391) */
.car-parts.car-parts--shbdn {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  aspect-ratio: 311 / 391;
  background-image: var(--oto-shbdn-plan);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.car-parts.car-parts--shbdn .oto-hasar-car-svg--overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  margin: 0;
}

/* Örnek HTML ile uyum: damage-area / car-parts + durum sınıfları (SVG path) */
.damage-area .car-parts svg path.oto-hs.original-new {
  fill: #e0e0e0;
}
.damage-area .car-parts.car-parts--shbdn svg path.oto-hs.original-new {
  fill: transparent;
  stroke: transparent;
}
.damage-area .car-parts svg path.oto-hs.local-painted-new,
.damage-area .car-parts svg path.oto-hs.localpainted-new {
  fill: #ea580c;
}
.damage-area .car-parts svg path.oto-hs.painted-new {
  fill: #2563eb;
}
.damage-area .car-parts svg path.oto-hs.changed-new {
  fill: #dc2626;
}

.car-damage-info .original,
.car-damage-info .local-painted-new,
.car-damage-info .painted-new,
.car-damage-info .changed-new {
  align-items: center;
}

.ilan-ozellik-panel {
  background: #faf8f5;
  border-radius: 0.25rem;
  padding: 1rem 1rem 1.25rem;
}

/* Google AdSense yerleşimleri */
.galeri-ad-slot {
  margin: 1rem 0;
  text-align: center;
  min-height: 50px;
  overflow: hidden;
}

.galeri-ad-slot .adsbygoogle {
  display: block !important;
  margin-left: auto;
  margin-right: auto;
}

.galeri-ad-slot--home_below_promo {
  max-width: 970px;
  margin: 0 auto;
  padding: 0 0.5rem;
  min-height: 90px !important;
  height: 90px !important;
  max-height: 90px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  overflow: hidden !important;
}
.galeri-ad-slot--home_below_promo .adsbygoogle {
  width: min(728px, 100%) !important;
  height: 90px !important;
  max-height: 90px !important;
}
.galeri-ad-slot--home_below_promo iframe {
  max-height: 90px !important;
}

.galeri-ad-slot--home_sidebar_bottom {
  margin: 0.75rem 0.5rem 0.5rem;
}

.galeri-ad-slot--home_feed_grid {
  margin: 0;
}

/* Vitrin grid içi: ilan kartı hücresi */
.front-vitrin-cell--ad {
  min-width: 0;
}

.front-card-media--ad {
  position: relative;
  overflow: hidden;
  border-radius: 0.4rem 0.4rem 0 0;
  aspect-ratio: 1;
  background: #f1f5f9;
}

.galeri-ad-slot--feed_media {
  margin: 0 !important;
  min-height: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.galeri-ad-slot--feed_media .adsbygoogle {
  min-height: 120px;
}

.card-ilan--ad-feed {
  cursor: default;
}

.card-ilan--ad-feed:hover {
  transform: none;
  border-color: #e2e8f0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.galeri-ad-placeholder--feed {
  padding: 0.25rem !important;
  gap: 0.2rem !important;
}

.galeri-ad-placeholder--feed .galeri-ad-placeholder__dim {
  font-size: clamp(0.55rem, 2vw, 0.65rem);
}

.galeri-ad-placeholder--feed .galeri-ad-placeholder__sub {
  font-size: clamp(0.48rem, 1.8vw, 0.58rem);
  line-height: 1.25;
}

.galeri-ad-slot--home_below_grid {
  max-width: 970px;
  margin-left: auto;
  margin-right: auto;
}

.galeri-ad-slot--ilan_below_header {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.galeri-ad-slot--ilan_below_gallery {
  margin-top: 0.35rem;
  margin-bottom: 0.75rem;
  max-width: 100%;
}

.galeri-ad-slot--ilan_below_content {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Reklam yokken / admin önizlemesi: çerçeve = tanımlı ölçü (inline width + aspect-ratio) */
.galeri-ad-slot--placeholder {
  display: flex;
  justify-content: center;
  width: 100%;
}

.galeri-ad-placeholder {
  margin: 0 auto;
  flex: 0 0 auto;
  border: 2px dashed rgba(100, 116, 139, 0.55);
  border-radius: 0.5rem;
  background: linear-gradient(145deg, rgba(241, 245, 249, 0.9), rgba(226, 232, 240, 0.5));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: clamp(0.35rem, 2vw, 0.75rem);
  overflow: hidden;
  /* width + aspect-ratio: adsense.php içindeki ph_w × ph_h */
}

.galeri-ad-placeholder__dim {
  font-size: clamp(0.75rem, 2.5vw, 0.95rem);
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.2;
}

.galeri-ad-placeholder__sub {
  font-size: clamp(0.62rem, 2vw, 0.72rem);
  color: #94a3b8;
  text-align: center;
  max-width: 95%;
  line-height: 1.35;
}

.finder-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

@media (min-width: 992px) {
  .finder-shell {
    grid-template-columns: minmax(0, 600px) minmax(0, 1fr);
    gap: 1.25rem;
  }
}

.finder-panel {
  min-width: 0;
}

.finder-page .finder-hero {
  display: none;
}

.finder-switcher {
  display: inline-flex;
  gap: 0.5rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.finder-switcher__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  color: #334155;
}

.finder-switcher__pill.is-active {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #fff;
}

.finder-search-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 0.9rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  padding: 0.9rem;
}

.finder-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
}

.finder-input {
  border-radius: 0.75rem;
}

.finder-search-actions {
  display: flex;
  gap: 0.5rem;
  align-items: end;
}

.finder-submit {
  border-radius: 0.75rem;
  font-weight: 700;
}

.finder-reset {
  border-radius: 0.75rem;
  font-weight: 700;
}

.finder-panel--sidebar {
  min-width: 0;
}

@media (min-width: 992px) {
  .finder-panel--sidebar {
    max-height: calc(100vh - 5.25rem);
    overflow: auto;
    padding-right: 0.35rem;
  }
}

.finder-card-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.75rem;
}

@media (min-width: 576px) {
  .finder-card-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .finder-card-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.finder-card {
  height: 100%;
}

.finder-card .card-body {
  padding: 0.85rem;
}

.finder-card__head {
  display: flex;
  gap: 0.85rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
  margin-bottom: 0.35rem;
}

.finder-card__meta {
  min-width: 0;
}

.finder-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(249, 115, 22, 0.12);
  color: var(--brand-dark);
}

.finder-card__title {
  font-size: 0.98rem;
}

.finder-card__subtitle {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: -0.15rem;
}

.finder-avatar {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 999px;
  overflow: hidden;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #334155;
}

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

.finder-card-list img {
  max-width: 100%;
  height: auto;
}

.finder-meta-list {
  display: grid;
  gap: 0.5rem;
}

.finder-meta-list > div {
  display: flex;
  gap: 0.6rem;
}

.finder-meta-list dt {
  min-width: 84px;
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.finder-meta-list dd {
  margin: 0;
}

@media (min-width: 992px) {
  .finder-meta-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem 0.75rem;
  }

  .finder-meta-list > div {
    flex-direction: column;
    gap: 0.1rem;
  }

  .finder-meta-list dt {
    min-width: 0;
    font-size: 0.72rem;
    line-height: 1.1;
  }

  .finder-meta-list dd {
    font-size: 0.88rem;
    line-height: 1.2;
  }
}

.finder-map {
  height: 560px;
}

@media (min-width: 992px) {
  .finder-panel--map {
    position: sticky;
    top: 4.5rem;
  }

  .finder-map {
    height: calc(100vh - 7.25rem);
    min-height: 640px;
  }
}
