:root,
[data-bs-theme="light"] {
  --ly-ink: #0a0a0a;
  --ly-muted: #525252;
  --ly-bg: #fafafa;
  --ly-card: #ffffff;
  --ly-border: #e5e5e5;
  --ly-primary: #b91c1c;
  --ly-primary-dark: #7f1d1d;
  --ly-primary-soft: #fecaca;
  --ly-radius: 14px;
  --ly-shadow: 0 12px 36px rgba(0, 0, 0, 0.07);
  /* Bootstrap 5 — tüm birincil / mavi tonlar kırmızı */
  --bs-primary: #b91c1c;
  --bs-primary-rgb: 185, 28, 28;
  --bs-primary-text-emphasis: #7f1d1d;
  --bs-primary-bg-subtle: #fef2f2;
  --bs-primary-border-subtle: #fecaca;
  --bs-blue: #b91c1c;
  --bs-indigo: #991b1b;
  --bs-purple: #991b1b;
  --bs-pink: #be123c;
  --bs-red: #b91c1c;
  --bs-orange: #c2410c;
  --bs-cyan: #b91c1c;
  --bs-teal: #991b1b;
  --bs-info: #b91c1c;
  --bs-info-rgb: 185, 28, 28;
  --bs-link-color: #b91c1c;
  --bs-link-hover-color: #7f1d1d;
  --bs-link-color-rgb: 185, 28, 28;
  --bs-link-hover-color-rgb: 127, 29, 29;
  --bs-focus-ring-color: rgba(185, 28, 28, 0.35);
  --bs-focus-ring-width: 0.25rem;
  --bs-pagination-color: #b91c1c;
  --bs-pagination-hover-color: #7f1d1d;
  --bs-pagination-focus-color: #7f1d1d;
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #b91c1c;
  --bs-pagination-active-border-color: #b91c1c;
  --bs-pagination-focus-box-shadow: 0 0 0 0.2rem rgba(185, 28, 28, 0.22);
  --bs-list-group-active-bg: #b91c1c;
  --bs-list-group-active-border-color: #b91c1c;
  --bs-list-group-active-color: #fff;
  --bs-info-bg-subtle: #fef2f2;
  --bs-info-border-subtle: #fecaca;
  --bs-info-text-emphasis: #7f1d1d;
}

.ly-body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ly-ink);
  background: var(--ly-bg);
  -webkit-font-smoothing: antialiased;
}

.ly-brand {
  text-decoration: none;
  color: inherit;
  padding: 0;
}

.ly-brand:hover,
.ly-brand:focus-visible {
  color: inherit;
  text-decoration: none;
}

.ly-brand__mark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.ly-brand__logo {
  display: block;
  width: auto;
  height: auto;
  max-height: 40px;
  max-width: 40px;
  flex-shrink: 0;
}

.ly-brand__text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.05rem;
  line-height: 1.05;
  padding: 0.1rem 0;
}

.ly-brand__line {
  display: inline-flex;
  align-items: baseline;
}

.ly-brand__word {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: var(--ly-ink);
}

.ly-brand__dot {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ly-primary);
  margin-left: -0.06em;
}

.ly-brand__sub {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ly-muted);
}

@media (min-width: 992px) {
  .ly-brand__logo {
    max-height: 48px;
    max-width: 48px;
  }
}

@media (max-width: 380px) {
  .ly-brand__mark {
    gap: 0.4rem;
  }

  .ly-brand__logo {
    max-height: 36px;
    max-width: 36px;
  }

  .ly-brand__word {
    font-size: 1.25rem;
  }

  .ly-brand__sub {
    font-size: 0.625rem;
    letter-spacing: 0.12em;
  }
}

.ly-header {
  border-bottom-color: rgba(10, 10, 10, 0.08) !important;
}

.ly-header .nav-link {
  font-weight: 500;
  color: #262626;
}

.ly-header button.nav-link {
  border: 0;
  background: transparent;
}

.ly-header .navbar-nav,
.ly-header .nav-item {
  align-items: center;
}

.ly-header .nav-item {
  display: flex;
}

.ly-header .nav-link.active,
.ly-header .nav-link:hover {
  color: var(--ly-primary);
}

.ly-mega-nav {
  position: relative;
}

.ly-mega-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 1050;
  width: min(680px, calc(100vw - 2rem));
  padding: 2rem 2.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 14px);
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-top: 3px solid var(--ly-primary);
  border-radius: 0 0 18px 18px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(10, 10, 10, 0.14);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.ly-mega-panel--single {
  width: min(320px, calc(100vw - 2rem));
  grid-template-columns: 1fr;
  gap: 0;
  padding: 1.5rem 1.8rem;
}

.ly-mega-nav:hover .ly-mega-panel,
.ly-mega-nav:focus-within .ly-mega-panel,
.ly-mega-nav.is-open .ly-mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.ly-mega-col h2 {
  font-size: 1.15rem;
  font-weight: 850;
  letter-spacing: -0.03em;
  margin: 0 0 1.2rem;
  color: #0a0a0a;
}

.ly-mega-col a {
  display: block;
  color: #0a0a0a;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.45rem 0;
  transition: color 0.16s ease, transform 0.16s ease;
}

.ly-mega-col a:hover,
.ly-mega-col a:focus {
  color: var(--ly-primary);
  transform: translateX(4px);
}

.ly-header .btn.btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.ly-header .btn.btn-primary:hover {
  background-color: var(--ly-primary-dark);
  border-color: var(--ly-primary-dark);
}

.ly-body .btn.btn-primary {
  --bs-btn-bg: var(--ly-primary);
  --bs-btn-border-color: var(--ly-primary);
  --bs-btn-color: #fff;
  --bs-btn-hover-bg: var(--ly-primary-dark);
  --bs-btn-hover-border-color: var(--ly-primary-dark);
  --bs-btn-hover-color: #fff;
  --bs-btn-active-bg: var(--ly-primary-dark);
  --bs-btn-active-border-color: var(--ly-primary-dark);
  --bs-btn-active-color: #fff;
  --bs-btn-disabled-bg: var(--ly-primary);
  --bs-btn-disabled-border-color: var(--ly-primary);
  --bs-btn-disabled-color: #fff;
  color: #fff;
  background-color: var(--ly-primary);
  border-color: var(--ly-primary);
}

.ly-body .btn.btn-primary:hover,
.ly-body .btn.btn-primary:focus,
.ly-body .btn.btn-primary:active {
  color: #fff;
  background-color: var(--ly-primary-dark);
  border-color: var(--ly-primary-dark);
}

.ly-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  line-height: 1.2;
  min-height: 2rem;
}

.ly-section-title {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ly-card-book {
  position: relative;
  border: 1px solid var(--ly-border);
  border-radius: var(--ly-radius);
  background: var(--ly-card);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  height: 100%;
}

@media (max-width: 991.98px) {
  .ly-mega-nav {
    display: block !important;
  }

  .ly-mega-panel {
    position: static;
    width: 100%;
    margin-top: 0.35rem;
    padding: 1rem;
    display: none;
    grid-template-columns: 1fr;
    gap: 1rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    border-radius: 14px;
    box-shadow: none;
  }

  .ly-mega-nav:hover .ly-mega-panel,
  .ly-mega-nav:focus-within .ly-mega-panel,
  .ly-mega-nav.is-open .ly-mega-panel {
    display: grid;
    transform: none;
  }
}

.ly-card-book:hover {
  transform: translateY(-3px);
  box-shadow: var(--ly-shadow);
}

.ly-card-book__cover {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--ly-radius) var(--ly-radius) 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
}

.ly-card-book__cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@supports not (aspect-ratio: 1) {
  .ly-card-book__cover {
    height: 0;
    padding-bottom: 133.3333%;
    aspect-ratio: auto;
  }
}

.ly-pill {
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.ly-category-tile {
  border: 1px solid var(--ly-border);
  border-radius: var(--ly-radius);
  background: #fff;
  padding: 1.15rem 1rem 1rem;
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.ly-category-tile:hover {
  border-color: rgba(185, 28, 28, 0.45);
  transform: translateY(-4px);
  box-shadow: var(--ly-shadow);
}

.ly-category-tile--catalog {
  min-height: 8.25rem;
}

.ly-category-tile--active {
  border-color: rgba(185, 28, 28, 0.65);
  box-shadow: 0 0 0 2px rgba(185, 28, 28, 0.22);
  background: linear-gradient(180deg, #fff5f5 0%, #fff 76%);
}

.ly-category-tile__emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.8rem;
  margin-bottom: 0.7rem;
  font-size: 1.15rem;
  background: linear-gradient(160deg, #fff 0%, #f5f5f5 100%);
  border: 1px solid rgba(10, 10, 10, 0.08);
}

.ly-category-tile__action {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ly-primary);
}

.ly-category-tile::after {
  content: "";
  position: absolute;
  inset: auto -20% -68% auto;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 28, 28, 0.12) 0%, rgba(185, 28, 28, 0) 68%);
  pointer-events: none;
  transition: transform 0.25s ease;
}

.ly-category-tile:hover::after {
  transform: scale(1.12);
}

.ly-category-tile--lgs .ly-category-tile__emoji {
  background: linear-gradient(160deg, #eff6ff 0%, #dbeafe 100%);
  border-color: rgba(37, 99, 235, 0.22);
}

.ly-category-tile--school .ly-category-tile__emoji {
  background: linear-gradient(160deg, #f0fdf4 0%, #dcfce7 100%);
  border-color: rgba(22, 163, 74, 0.24);
}

.ly-category-tile--question .ly-category-tile__emoji {
  background: linear-gradient(160deg, #fff7ed 0%, #fed7aa 100%);
  border-color: rgba(249, 115, 22, 0.26);
}

.ly-category-tile--exam .ly-category-tile__emoji {
  background: linear-gradient(160deg, #f5f3ff 0%, #ddd6fe 100%);
  border-color: rgba(124, 58, 237, 0.24);
}

.ly-card-book__category {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ly-primary-dark);
  line-height: 1.2;
}

.ly-card-book__excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  line-height: 1.45;
}

/* ——— Yayınlar katalog (kitaplar.php) ——— */
.ly-catalog-hero {
  isolation: isolate;
  min-height: 16rem;
  background: linear-gradient(130deg, #150808 0%, #340b0b 48%, #111827 100%);
}

@media (min-width: 992px) {
  .ly-catalog-hero {
    min-height: 18rem;
  }
}

.ly-catalog-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ly-catalog-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ly-catalog-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(8, 8, 8, 0.9) 0%,
    rgba(8, 8, 8, 0.72) 38%,
    rgba(8, 8, 8, 0.38) 100%
  );
}

.ly-catalog-hero .container {
  z-index: 2;
}

.ly-catalog-hero__breadcrumb {
  --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.88);
}

.ly-catalog-hero__breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.92);
}

.ly-catalog-hero__breadcrumb .breadcrumb-item a:hover {
  color: #fff;
}

.ly-catalog-hero__breadcrumb .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.62);
}

.ly-catalog-hero__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

.ly-catalog-hero__title {
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.ly-catalog-hero__lead {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
}

.ly-catalog-hero__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(8px);
}

.ly-catalog-hero__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.75rem;
  font-weight: 600;
  animation: lyFloatIn 0.6s ease both;
}

.ly-catalog-hero__chip:nth-child(2) {
  animation-delay: 0.08s;
}

.ly-catalog-hero__chip:nth-child(3) {
  animation-delay: 0.14s;
}

.ly-catalog-hero__chip:nth-child(4) {
  animation-delay: 0.2s;
}

.ly-catalog-section-head__title {
  letter-spacing: -0.02em;
}

.ly-catalog-cats {
  background:
    radial-gradient(circle at 92% 10%, rgba(185, 28, 28, 0.08), transparent 36%),
    #fff;
}

.ly-catalog-filters__input {
  border-radius: 12px;
  border-color: rgba(10, 10, 10, 0.1);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ly-catalog-filters__input:focus {
  border-color: rgba(185, 28, 28, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(185, 28, 28, 0.12);
  transform: translateY(-1px);
}

.ly-catalog-filters {
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(120deg, rgba(185, 28, 28, 0.3), rgba(124, 58, 237, 0.26), rgba(2, 132, 199, 0.2)) border-box;
  border: 1px solid transparent !important;
}

.ly-catalog-overview {
  background: linear-gradient(180deg, #fafafa 0%, #f4f4f5 100%);
  border-top: 1px solid var(--ly-border);
  border-bottom: 1px solid var(--ly-border);
}

.ly-catalog-overview__card {
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: calc(var(--ly-radius) + 2px);
  padding: 1.2rem 1.1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ly-catalog-overview__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.ly-catalog-overview__kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ly-primary);
}

.ly-catalog-results {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%) !important;
}

.ly-catalog-results__count {
  border: 1px solid rgba(10, 10, 10, 0.08);
  background: #fafafa;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
}

.ly-catalog-pagination .page-link {
  border: 0;
  padding: 0.5rem 0.85rem;
}

.ly-catalog-pagination .page-item + .page-item .page-link {
  border-left: 1px solid var(--ly-border);
}

.ly-catalog-pagination .page-item.active .page-link {
  font-weight: 700;
}

@keyframes lyFloatIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ——— Premium katalog / kitaplar ——— */
.ly-catalog-hero--premium {
  min-height: 27rem;
}

.ly-catalog-hero__blur-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(42px);
  opacity: 0.45;
  z-index: 1;
  pointer-events: none;
}

.ly-catalog-hero__blur-orb--one {
  width: 260px;
  height: 260px;
  right: 8%;
  top: 9%;
  background: rgba(236, 72, 153, 0.55);
}

.ly-catalog-hero__blur-orb--two {
  width: 240px;
  height: 240px;
  right: 22%;
  bottom: -8%;
  background: rgba(56, 189, 248, 0.45);
}

.ly-catalog-tabs {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.45rem;
  scrollbar-width: thin;
}

.ly-catalog-grade-filter {
  background:
    radial-gradient(circle at 92% 10%, rgba(185, 28, 28, 0.06), transparent 28%),
    #fff;
}

.ly-catalog-grade-compact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1rem;
}

.ly-catalog-grade-compact h2 {
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.03em;
  margin: 0;
  margin-right: auto;
}

.ly-catalog-grade-set {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.ly-catalog-grade-set strong {
  color: #737373;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-right: 0.15rem;
}

.ly-catalog-grade-compact > .ly-home-level__tabs {
  display: inline-flex;
}

.ly-catalog-grade-set > a,
.ly-catalog-grade-compact > .ly-home-level__tabs > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.1rem;
  min-height: 2.35rem;
  border: 1px solid rgba(10, 10, 10, 0.18);
  border-radius: 0.45rem;
  color: #0a0a0a;
  background: #fff;
  font-size: 1.3rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.07em;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.ly-catalog-grade-compact > .ly-home-level__tabs > a {
  min-width: auto;
  padding-inline: 0.9rem;
  font-size: 0.88rem;
  letter-spacing: 0;
}

.ly-catalog-grade-set > a:hover,
.ly-catalog-grade-compact > .ly-home-level__tabs > a:hover {
  border-color: rgba(185, 28, 28, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(10, 10, 10, 0.08);
}

.ly-catalog-grade-set > a span {
  font-size: 0.45rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  margin-left: 0.15rem;
}

.ly-catalog-grade-set > a.is-active,
.ly-catalog-grade-compact > .ly-home-level__tabs > a.is-active {
  color: #fff;
  border-color: var(--ly-primary);
  background: var(--ly-primary);
  box-shadow: 0 10px 22px rgba(185, 28, 28, 0.22);
}

.ly-catalog-grade-set > a.is-active span {
  color: #fff;
}

@media (max-width: 991.98px) {
  .ly-catalog-grade-compact {
    align-items: flex-start;
    flex-direction: column;
  }

  .ly-catalog-grade-set {
    flex-wrap: wrap;
  }
}

.ly-catalog-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  text-decoration: none;
  color: #262626;
  border: 1px solid rgba(10, 10, 10, 0.1);
  background: #fff;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.58rem 1rem;
  transition: all 0.2s ease;
}

.ly-catalog-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(185, 28, 28, 0.45);
  color: var(--ly-primary);
}

.ly-catalog-tab.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(120deg, #b91c1c 0%, #7f1d1d 100%);
  box-shadow: 0 10px 24px rgba(185, 28, 28, 0.3);
}

.ly-catalog-featured {
  background: linear-gradient(180deg, #fff 0%, #f9fafb 100%);
}

.ly-card-book {
  border-radius: 20px;
  overflow: hidden;
  border-color: rgba(10, 10, 10, 0.08);
}

.ly-card-book__media {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 2;
  width: 100%;
  padding: 0.8rem;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.ly-card-book__float-badge {
  background: rgba(185, 28, 28, 0.92);
  color: #fff;
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.58rem;
}

.ly-card-book__float-chip {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.88);
  color: #111827;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.58rem;
}

.ly-card-book__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border: 1px solid rgba(10, 10, 10, 0.16);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111827;
  transition: all 0.2s ease;
}

.ly-card-book:hover .ly-card-book__cta {
  color: #fff;
  border-color: var(--ly-primary);
  background: var(--ly-primary);
}

.ly-card-book--catalog-premium {
  border-radius: 12px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 10px 28px -16px rgba(0, 0, 0, 0.14);
}

.ly-card-book--catalog-premium .ly-card-book__cover {
  aspect-ratio: 4 / 3;
  background: #f7f7f7;
}

.ly-card-book--catalog-premium .ly-card-book__body {
  padding: 0.9rem !important;
}

.ly-card-book--catalog-premium .ly-card-book__title {
  font-size: 0.92rem;
  min-height: auto;
}

.ly-card-book--catalog-premium .ly-card-book__float-badge,
.ly-card-book--catalog-premium .ly-card-book__float-chip,
.ly-card-book--catalog-premium .ly-badge {
  font-size: 0.62rem;
}

.ly-card-book--catalog-premium:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 16px 36px -18px rgba(0, 0, 0, 0.2);
}

.ly-card-book--featured-premium {
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.08);
}

.ly-card-book--featured-premium .ly-card-book__cover {
  aspect-ratio: 4 / 3;
}

@supports not (aspect-ratio: 1) {
  .ly-card-book--catalog-premium .ly-card-book__cover {
    height: 0;
    padding-bottom: 75%;
    aspect-ratio: auto;
  }
}

.ly-catalog-results__container {
  padding-top: 0.5rem;
}

.ly-catalog-cta {
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.ly-catalog-cta__panel {
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 24px;
  padding: 1.5rem;
  background: linear-gradient(125deg, #ffffff 0%, #f5f7fb 100%);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.08);
}

.ly-catalog-cta__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--ly-primary);
}

@media (max-width: 575.98px) {
  .ly-catalog-hero--premium {
    min-height: 24rem;
  }
  .ly-catalog-hero__chip {
    font-size: 0.7rem;
  }
  .ly-catalog-tab {
    padding: 0.52rem 0.86rem;
  }
  .ly-card-book__body {
    padding: 1rem !important;
  }
}

/* ——— Kitap detay: premium ürün sayfası ——— */
.ly-book-detail-hero {
  background: linear-gradient(130deg, #ffffff 0%, #f8fafc 70%);
  border-bottom: 1px solid var(--ly-border);
}

.ly-book-detail-cover {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, 0.08);
  background: #fff;
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.12);
}

.ly-book-detail-panel {
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 18px;
  padding: 1rem;
  background: #fff;
}

.ly-book-detail-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.ly-book-detail-stat {
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 12px;
  background: #fafafa;
  padding: 0.7rem;
}

.ly-book-detail-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ly-primary);
}

.ly-book-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.ly-book-detail-list li {
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 12px;
  background: #fff;
  padding: 0.65rem 0.75rem;
}

/* ——— Ürün detay sayfası ——— */
.ly-product-detail {
  background: #fff;
}

.ly-product-breadcrumb {
  color: #737373;
}

.ly-product-breadcrumb .breadcrumb-item,
.ly-product-breadcrumb .breadcrumb-item a {
  color: #737373;
}

.ly-product-cover {
  position: relative;
  min-height: 31rem;
  border: 1px solid rgba(10, 10, 10, 0.12);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3.5rem);
}

.ly-product-cover img {
  display: block;
  width: min(78%, 360px);
  height: 27rem;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(24px 24px 22px rgba(10, 10, 10, 0.14));
}

.ly-product-cover__zoom {
  position: absolute;
  right: 1.35rem;
  top: 1.35rem;
  width: 2.7rem;
  height: 2.7rem;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--ly-primary);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(185, 28, 28, 0.22);
}

.ly-product-summary {
  padding-top: 0.25rem;
}

.ly-product-summary h1 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -0.045em;
  margin-bottom: 1rem;
}

.ly-product-level {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.ly-product-level span {
  color: #262626;
  font-weight: 700;
}

.ly-product-level strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.25rem;
  min-height: 1.6rem;
  padding: 0.25rem 0.7rem;
  color: #fff;
  background: var(--ly-primary);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ly-product-level strong.is-muted {
  color: #737373;
  background: #e5e5e5;
}

.ly-product-desc {
  max-width: 42rem;
  color: #262626;
  font-size: 1rem;
  line-height: 1.78;
}

.ly-product-desc p + p {
  margin-top: 1rem;
}

.ly-product-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  max-width: 31rem;
  margin-top: 2rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(10, 10, 10, 0.22);
}

.ly-product-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.1rem;
  padding: 0.75rem 1rem;
  color: #0a0a0a;
  text-decoration: none;
  border: 1px solid #0a0a0a;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.ly-product-action svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ly-product-action--primary {
  color: #fff;
  border-color: var(--ly-primary);
  background: var(--ly-primary);
}

.ly-product-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(10, 10, 10, 0.12);
}

.ly-product-action--primary:hover {
  color: #fff;
  background: var(--ly-primary-dark);
  border-color: var(--ly-primary-dark);
}

.ly-product-action--outline:hover {
  color: #fff;
  background: #0a0a0a;
}

.ly-product-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.ly-product-tools span {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 9rem;
  min-height: 3.1rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(10, 10, 10, 0.55);
  color: #0a0a0a;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 850;
  text-transform: uppercase;
}

.ly-product-tools svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ly-product-info {
  margin-top: 4.5rem;
}

.ly-product-info h2 {
  display: inline-block;
  min-width: 12rem;
  border-bottom: 2px solid #0a0a0a;
  padding-bottom: 0.65rem;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.ly-product-info__body {
  max-width: 62rem;
}

.ly-product-description-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.ly-product-description-list li {
  position: relative;
  padding-left: 1.05rem;
  color: #0a0a0a;
  line-height: 1.68;
}

.ly-product-description-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: var(--ly-primary);
}

.ly-product-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(10, 10, 10, 0.12);
  font-size: 0.95rem;
}

.ly-product-table th,
.ly-product-table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
}

.ly-product-table th {
  width: 42%;
  color: #0a0a0a;
  background: #fafafa;
  font-weight: 700;
}

.ly-product-table tr:nth-child(even) th,
.ly-product-table tr:nth-child(even) td {
  background: #f5f5f5;
}

@media (max-width: 991.98px) {
  .ly-product-cover {
    min-height: 25rem;
  }

  .ly-product-cover img {
    width: min(76%, 320px);
    height: 22rem;
  }

  .ly-product-summary {
    padding-top: 0;
  }
}

@media (max-width: 575.98px) {
  .ly-product-actions {
    grid-template-columns: 1fr;
  }

  .ly-product-cover {
    min-height: 20rem;
  }

  .ly-product-cover img {
    width: min(82%, 260px);
    height: 18rem;
  }

  .ly-product-tools span {
    width: 100%;
  }
}

.ly-media-thumb {
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, 0.08);
  background: #fafafa;
}

.ly-aspect-cover-3x4 {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.ly-aspect-cover-3x4 > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 576px) {
  .ly-media-thumb {
    width: 5.25rem;
    height: 5.25rem;
  }
}

.ly-table-wrap {
  border-radius: var(--ly-radius);
  border: 1px solid var(--ly-border);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
}

.ly-footer {
  position: relative;
  border-top: 0;
  background: #0a0a0a;
  color: #a3a3a3;
}

.ly-footer__accent {
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--ly-primary), transparent);
}

.ly-footer__main {
  background: linear-gradient(180deg, #161616 0%, #101010 100%);
}

.ly-footer__mark-img {
  display: block;
  width: 56px;
  height: 56px;
  max-width: 100%;
  object-fit: contain;
}

.ly-footer__brand {
  line-height: 1.15;
}

.ly-footer__brand-name {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.ly-footer__brand-dot {
  color: var(--ly-primary);
  font-weight: 800;
}

.ly-footer__lead {
  color: #a3a3a3;
  max-width: 22rem;
  line-height: 1.65;
}

.ly-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #e5e5e5;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.ly-footer__social-link:hover {
  color: #fff;
  border-color: var(--ly-primary);
  background: rgba(185, 28, 28, 0.16);
  transform: translateY(-2px);
}

.ly-footer__social-link:focus-visible {
  outline: 2px solid var(--ly-primary);
  outline-offset: 2px;
}

.ly-footer__social-link svg {
  display: block;
}

.ly-footer__nav-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fafafa;
  margin-bottom: 1rem;
}

.ly-footer__nav li + li {
  margin-top: 0.35rem;
}

.ly-footer__nav-link {
  color: #a3a3a3;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.15s ease;
}

.ly-footer__nav-link:hover {
  color: #fff;
}

.ly-footer__nav-link--emphasis {
  font-weight: 500;
  color: #e5e5e5;
}

.ly-footer__nav-link--emphasis:hover {
  color: #fecaca;
}

.ly-footer__cta {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fafafa;
  font-weight: 600;
  font-size: 0.8125rem;
}

.ly-footer__cta:hover {
  background: var(--ly-primary);
  border-color: var(--ly-primary);
  color: #fff;
}

.ly-footer__cta:focus-visible {
  outline: 2px solid var(--ly-primary);
  outline-offset: 2px;
}

.ly-footer__bottom {
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ly-footer__copy {
  color: #737373;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}

.ly-footer__credit {
  color: #5c5c5c;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.ly-footer__credit-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ly-footer__credit-link:hover {
  color: #a3a3a3;
}

.ly-footer__credit-link:focus-visible {
  color: #d4d4d4;
  outline: 2px solid var(--ly-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 0.5rem 0.75rem;
  background: #fff;
  border: 1px solid var(--ly-border);
  border-radius: 8px;
  z-index: 2000;
}

.text-preline {
  white-space: pre-line;
}

/* ——— Anasayfa (modern yayınevi) ——— */
.letter-spacing-sm {
  letter-spacing: 0.08em;
}

.py-lg-6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 992px) {
  .py-lg-6 {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}

.ly-masthead {
  position: relative;
  overflow: hidden;
}

.ly-masthead__container {
  padding-bottom: 3.5rem;
}

@media (min-width: 992px) {
  .ly-masthead__container {
    padding-bottom: 5.5rem;
  }
}

.ly-masthead__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 45%, #fff5f5 100%);
  pointer-events: none;
}

.ly-masthead__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(circle at 1px 1px, rgba(10, 10, 10, 0.05) 1px, transparent 0);
  background-size: 22px 22px;
}

.ly-masthead__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ly-muted);
  font-weight: 600;
}

.ly-masthead__title {
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.ly-masthead__lead {
  max-width: 26rem;
}

.ly-masthead__carousel {
  border-radius: calc(var(--ly-radius) + 6px);
}

.ly-masthead__carousel .carousel-inner {
  overflow: hidden;
}

.ly-masthead__dots-row {
  flex-shrink: 0;
}

.ly-masthead__slide-link:hover .object-fit-cover {
  transform: scale(1.02);
}

.ly-masthead__ratio .object-fit-cover {
  transition: transform 0.45s ease;
}

.ly-masthead__caption {
  position: relative;
  z-index: 1;
}

.ly-masthead__indicators .ly-masthead__dot {
  width: 2rem;
  height: 0.35rem;
  border-radius: 999px;
  border: 0;
  background: #d4d4d4;
  opacity: 1;
  text-indent: 0;
  margin: 0;
}

.ly-masthead__indicators .ly-masthead__dot.active {
  background: var(--ly-primary);
}

.ly-home-slider {
  position: relative;
  padding: 2.25rem 0 2.5rem;
  background:
    radial-gradient(circle at 90% 8%, rgba(185, 28, 28, 0.12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fafafa 100%);
  overflow: hidden;
}

.ly-home-slider__carousel {
  position: relative;
  border-radius: 22px;
}

.ly-home-slider__slide {
  position: relative;
  min-height: clamp(320px, 46vw, 560px);
  overflow: hidden;
  border-radius: 22px;
  background: #0a0a0a;
  box-shadow: 0 24px 70px rgba(10, 10, 10, 0.16);
}

.ly-home-slider__slide picture {
  position: absolute;
  inset: 0;
  display: block;
}

.ly-home-slider__image,
.ly-home-slider__slide picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

.ly-campaign-card__media picture,
.ly-campaign-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ly-home-slider__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.78) 0%, rgba(10, 10, 10, 0.48) 42%, rgba(10, 10, 10, 0.08) 100%),
    linear-gradient(0deg, rgba(185, 28, 28, 0.22), rgba(185, 28, 28, 0));
}

.ly-home-slider__content {
  position: relative;
  z-index: 2;
  max-width: 42rem;
  min-height: clamp(320px, 46vw, 560px);
  padding: clamp(2rem, 5vw, 4.5rem);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ly-home-slider__kicker {
  color: #fecaca;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.ly-home-slider__title {
  max-width: 37rem;
  font-size: clamp(2.1rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin-bottom: 1rem;
}

.ly-home-slider__lead {
  max-width: 30rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1vw, 1.2rem);
  line-height: 1.65;
  margin-bottom: 0;
}

.ly-home-slider__cta {
  font-weight: 850;
  box-shadow: 0 14px 32px rgba(185, 28, 28, 0.32);
}

.ly-home-slider__ghost {
  color: #0a0a0a;
  font-weight: 850;
}

/* Görsel yok: sadece yazı, şeffaf arka plan */
.ly-home-slider__slide--text-only {
  background: transparent;
  box-shadow: none;
  border: 1px dashed rgba(10, 10, 10, 0.08);
}

.ly-home-slider__slide--text-only .ly-home-slider__content {
  color: var(--ly-text, #0a0a0a);
}

.ly-home-slider__slide--text-only .ly-home-slider__kicker {
  color: var(--ly-primary, #b91c1c);
}

.ly-home-slider__slide--text-only .ly-home-slider__title {
  color: var(--ly-text, #0a0a0a);
}

.ly-home-slider__slide--text-only .ly-home-slider__lead {
  color: #475569;
}

.ly-home-slider__slide--text-only .ly-home-slider__ghost {
  background: #fff;
  border: 1px solid var(--ly-border, #e2e8f0);
  color: var(--ly-text, #0a0a0a);
}

.ly-home-slider__arrow {
  top: 50%;
  width: 3.45rem;
  height: 3.45rem;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.72);
  opacity: 1;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.ly-home-slider__arrow:hover {
  background: var(--ly-primary);
  transform: translateY(-50%) scale(1.04);
}

.ly-home-slider__arrow--prev {
  left: 1.25rem;
}

.ly-home-slider__arrow--next {
  right: 1.25rem;
}

.ly-home-slider__arrow span {
  display: block;
  color: #fff;
  font-size: 2.3rem;
  line-height: 1;
  margin-top: -0.2rem;
}

.ly-home-slider__tabs {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: -3.85rem;
  width: min(300px, calc(100% - 2rem));
  margin: 0;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 999px;
  padding: 0.35rem;
  overflow: visible;
  box-shadow: 0 10px 28px rgba(10, 10, 10, 0.08);
}

.ly-home-slider__tabs [data-bs-target] {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.62rem 0.9rem;
  border: 0;
  border-radius: 999px;
  text-indent: 0;
  opacity: 1;
  color: #0a0a0a;
  background: transparent;
  font-size: 0.86rem;
  font-weight: 850;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.ly-home-slider__tabs [data-bs-target].active {
  color: #fff;
  background: var(--ly-primary);
  box-shadow: 0 8px 18px rgba(185, 28, 28, 0.22);
}

@media (max-width: 767.98px) {
  .ly-home-slider {
    padding-top: 1rem;
  }

  .ly-home-slider__slide,
  .ly-home-slider__content {
    min-height: 420px;
  }

  .ly-home-slider__overlay {
    background:
      linear-gradient(180deg, rgba(10, 10, 10, 0.78) 0%, rgba(10, 10, 10, 0.48) 58%, rgba(10, 10, 10, 0.2) 100%),
      linear-gradient(0deg, rgba(185, 28, 28, 0.22), rgba(185, 28, 28, 0));
  }

  .ly-home-slider__content {
    padding: 2rem 1.35rem;
  }

  .ly-home-slider__arrow {
    width: 2.75rem;
    height: 2.75rem;
  }
}

.ly-home-rail {
  border-color: var(--ly-border) !important;
}

.ly-campaign-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ly-campaign-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ly-shadow) !important;
}

.ly-announce-pdf__frame {
  width: 100%;
  height: 100%;
  border: 0;
}

.ly-announce-pdf__viewer {
  min-height: 420px;
  background: #f8fafc;
}

@media (max-width: 767.98px) {
  .ly-announce-pdf__viewer {
    min-height: 280px;
  }
}

.ly-announce-card {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ly-announce-card:hover {
  border-color: rgba(185, 28, 28, 0.28) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.ly-line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.ly-home-featured {
  background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 42%, #fafafa 100%);
  border-top: 1px solid var(--ly-border);
  position: relative;
}

.ly-home-featured::before {
  content: "";
  display: block;
  max-width: 120px;
  height: 3px;
  margin: 0 auto 2.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(185, 28, 28, 0.55), transparent);
}

.ly-featured-head {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.ly-featured-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ly-primary);
  margin-bottom: 0.75rem;
}

.ly-featured-title {
  font-size: clamp(1.65rem, 2.5vw + 1rem, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.2;
  color: var(--ly-ink);
  margin-bottom: 0.75rem;
}

.ly-featured-lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ly-muted);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.ly-home-level {
  margin-top: 2.25rem;
}

.ly-home-level + .ly-home-level {
  margin-top: 4rem;
}

.ly-home-level__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ly-home-level__head h3 {
  font-size: 1.3rem;
  font-weight: 850;
  letter-spacing: -0.035em;
  margin: 0;
}

.ly-home-level__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
}

.ly-home-level__tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.1rem;
  min-height: 2.65rem;
  border: 1px solid rgba(10, 10, 10, 0.22);
  border-radius: 0.45rem;
  color: #0a0a0a;
  background: #fff;
  font-size: 1.65rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.08em;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.ly-home-level__tabs .ly-home-grade-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  min-height: 2.35rem;
  padding-inline: 0.75rem;
  border: 1px solid rgba(10, 10, 10, 0.22);
  border-radius: 0.45rem;
  color: #0a0a0a;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.ly-home-grade-tab__text {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.ly-home-level__tabs a:hover,
.ly-home-level__tabs .ly-home-grade-tab:hover {
  border-color: rgba(185, 28, 28, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(10, 10, 10, 0.08);
}

.ly-home-level__tabs a span {
  min-width: 0;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.48rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  margin-left: 0.15rem;
}

.ly-home-level__tabs .is-active,
.ly-home-level__tabs .ly-home-grade-tab.is-active {
  color: #fff;
  border-color: var(--ly-primary);
  background: var(--ly-primary);
  box-shadow: 0 10px 22px rgba(185, 28, 28, 0.22);
}

.ly-home-level__tabs .is-active span {
  color: #fff;
}

.ly-home-featured-empty[data-ly-grade-empty] {
  margin-top: 1rem;
}

.ly-home-featured-empty[data-ly-grade-empty].d-none {
  display: none !important;
}

/* Anasayfa öne çıkan: kapak görseli kitap kataloğundan daha kısa (3:4 yerine ~20:23) */
.ly-home-featured .ly-card-book--featured .ly-card-book__cover {
  aspect-ratio: 4 / 3;
  background: #f7f7f7;
}

@supports not (aspect-ratio: 1) {
  .ly-home-featured .ly-card-book--featured .ly-card-book__cover {
    height: 0;
    padding-bottom: 75%;
    aspect-ratio: auto;
  }
}

.ly-home-featured .ly-card-book--featured {
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 12px;
  background: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 10px 28px -16px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

.ly-home-featured .ly-card-book--featured:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 16px 36px -18px rgba(0, 0, 0, 0.2);
  border-color: rgba(185, 28, 28, 0.18);
}

.ly-home-featured .ly-card-book--featured .ly-card-book__body {
  padding: 0.9rem !important;
}

.ly-home-featured .ly-card-book--featured .ly-card-book__float-badge,
.ly-home-featured .ly-card-book--featured .ly-card-book__float-chip,
.ly-home-featured .ly-card-book--featured .ly-badge {
  font-size: 0.62rem;
}

.ly-card-book__link:focus-visible {
  outline: 2px solid var(--ly-primary);
  outline-offset: 3px;
  border-radius: calc(var(--ly-radius) + 6px);
}

.ly-card-book:hover .ly-card-book__cover img {
  transform: scale(1.03);
}

.ly-card-book--featured:hover .ly-card-book__cover img {
  transform: scale(1.04);
}

.ly-card-book__body {
  border-top: 1px solid rgba(229, 229, 229, 0.95);
}

.ly-card-book__meta {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ly-muted) !important;
}

.ly-card-book__meta-sep {
  margin: 0 0.25rem;
  opacity: 0.65;
}

.ly-card-book--featured .ly-card-book__title {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--ly-ink);
  min-height: auto;
}

.ly-home-featured-view {
  min-height: 12rem;
}

.ly-home-grade-select-wrap {
  flex: 1 1 100%;
  margin: 0;
}

.ly-home-grade-select {
  border-radius: 0.5rem;
  border-color: rgba(10, 10, 10, 0.18);
  font-size: 0.9rem;
  font-weight: 600;
}

.ly-home-grade-panel__empty {
  padding: 1.5rem 0.5rem;
}

@media (max-width: 767.98px) {
  .ly-home-level__head {
    align-items: stretch;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
  }

  .ly-home-level__head h3 {
    font-size: 1.2rem;
    margin: 0;
  }

  .ly-home-grade-select-wrap {
    width: 100%;
  }

  .ly-home-featured-view {
    margin-top: 0.15rem;
  }

  .ly-home-grade-panel {
    --bs-gutter-x: 0.65rem;
    --bs-gutter-y: 0.65rem;
  }

  .ly-home-featured .ly-card-book--home-strip {
    height: 100%;
    border-radius: 10px;
    background: #f3f4f6;
    border-color: rgba(10, 10, 10, 0.1);
    box-shadow: none;
  }

  .ly-home-featured .ly-card-book--home-strip:hover {
    transform: none;
    box-shadow: none;
  }

  .ly-home-featured .ly-card-book--home-strip .ly-card-book__cover {
    aspect-ratio: 3 / 4;
    background: #ececec;
  }

  .ly-home-featured .ly-card-book--home-strip .ly-card-book__body {
    padding: 0.55rem 0.5rem 0.65rem !important;
    text-align: center;
    border-top: 0;
  }

  .ly-home-featured .ly-card-book--home-strip .ly-card-book__meta,
  .ly-home-featured .ly-card-book--home-strip .ly-card-book__tags,
  .ly-home-featured .ly-card-book--home-strip .ly-card-book__float-badge,
  .ly-home-featured .ly-card-book--home-strip .ly-card-book__float-chip {
    display: none !important;
  }

  .ly-home-featured .ly-card-book--home-strip .ly-card-book__title {
    font-size: 0.72rem;
    line-height: 1.3;
    margin-bottom: 0.45rem !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: 2.6em;
  }

  .ly-home-featured .ly-card-book--home-strip .ly-card-book__cta {
    width: 100%;
    margin-top: 0 !important;
    padding: 0.42rem 0.5rem;
    font-size: 0.68rem;
    color: #fff;
    background: var(--ly-primary);
    border-color: var(--ly-primary);
  }

}

@media (min-width: 768px) {
  .ly-home-featured-grid.row {
    justify-content: center;
  }
}

.ly-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  line-height: 1;
}

.ly-badge--accent {
  color: #7f1d1d;
  background: linear-gradient(180deg, #fef2f2 0%, #fecaca 100%);
  border: 1px solid rgba(185, 28, 28, 0.35);
}

.ly-badge--neutral {
  color: #404040;
  background: #f5f5f5;
  border: 1px solid var(--ly-border);
}

.ly-card-book__hint {
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.ly-card-book--featured:hover .ly-card-book__hint {
  opacity: 1;
  transform: translateY(0);
}

.ly-featured-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ly-ink);
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.2);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.ly-featured-cta:hover {
  color: #fff;
  background: var(--ly-primary);
  border-color: var(--ly-primary);
  box-shadow: 0 8px 24px rgba(185, 28, 28, 0.35);
  transform: translateY(-2px);
}

.ly-featured-cta:focus-visible {
  outline: 2px solid var(--ly-primary);
  outline-offset: 3px;
}

/* Tam genişlik sayfa şeridi (görsel alanı) */
.ly-page-strip {
  position: relative;
  min-height: 160px;
  max-height: 280px;
  overflow: hidden;
  background: #0a0a0a;
}

.ly-page-strip img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  max-height: 280px;
  object-fit: cover;
  opacity: 0.92;
}

.ly-page-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.2) 55%, transparent 100%);
  pointer-events: none;
}

.ly-page-strip--clean {
  background: #fff;
  border-bottom: 1px solid var(--ly-border);
}

.ly-page-strip--clean::after {
  display: none;
}

.ly-page-strip--clean img {
  opacity: 1;
}

/* Bootstrap: kalan mavi odak / form sızıntıları */
.ly-body .form-control:focus,
.ly-body .form-select:focus,
.ly-body .form-check-input:focus {
  border-color: #f87171;
  box-shadow: 0 0 0 0.2rem rgba(185, 28, 28, 0.2);
}

.ly-body .form-check-input:checked {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.ly-body .nav-link:focus-visible {
  outline: 2px solid var(--bs-primary);
  outline-offset: 2px;
}

/* ——— Hakkimizda: referans sade düzen ——— */
.ly-about-page {
  background: #fff;
  color: #0a0a0a;
  overflow-x: hidden;
}

.ly-body .ly-about-page .container {
  max-width: 1240px;
}

.ly-about-page__title {
  text-align: center;
  font-size: clamp(2.25rem, 4vw, 3.45rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  margin-bottom: 3rem;
}

.ly-about-page__intro {
  max-width: 1120px;
  margin: 0 auto;
}

.ly-about-tabs {
  display: grid;
  gap: 0;
  width: 100%;
}

.ly-about-tabs a {
  display: grid;
  grid-template-columns: 2.55rem 1fr;
  align-items: center;
  min-height: 3.45rem;
  color: #0a0a0a;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 800;
  border-bottom: 1px solid rgba(185, 28, 28, 0.42);
  transition: color 0.18s ease, transform 0.18s ease;
}

.ly-about-tabs a:hover {
  color: var(--ly-primary);
  transform: translateX(3px);
}

.ly-about-tabs__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: #0a0a0a;
}

.ly-about-tabs__icon svg {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ly-about-copy {
  color: #0a0a0a;
  font-size: 0.91rem;
  line-height: 1.78;
}

.ly-about-copy p + p {
  margin-top: 1.18rem;
}

.ly-about-image {
  border-radius: 0.6rem;
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, 0.12);
  background: #0a0a0a;
  max-width: 360px;
  margin-left: auto;
}

.ly-about-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.ly-about-feature-content {
  max-width: 1040px;
  margin: 4.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.ly-about-content-block {
  position: relative;
  min-height: 100%;
  padding: 1.35rem 1.35rem 1.25rem;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(10, 10, 10, 0.055);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ly-about-content-block::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 1.35rem;
  width: 2.25rem;
  height: 0.2rem;
  border-radius: 999px;
  background: var(--ly-primary);
}

.ly-about-content-block:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 28, 28, 0.28);
  box-shadow: 0 24px 48px rgba(10, 10, 10, 0.085);
}

.ly-about-content-block h2 {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  margin: 0.95rem 0 0.75rem;
}

.ly-about-content-block p,
.ly-about-final {
  color: #0a0a0a;
  font-size: 0.92rem;
  line-height: 1.78;
  margin-bottom: 0;
}

.ly-about-final {
  grid-column: 1 / -1;
  margin-top: 0.25rem;
  padding: 1.2rem 1.35rem;
  border-radius: 18px;
  color: #0a0a0a;
  border: 1px solid rgba(185, 28, 28, 0.2);
  background:
    linear-gradient(90deg, var(--ly-primary) 0 5px, transparent 5px),
    linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
  box-shadow: 0 14px 34px rgba(185, 28, 28, 0.08);
}

.ly-about-vm {
  max-width: 1040px;
  margin: 4rem auto 0;
  position: relative;
  padding: 2rem 0;
}

.ly-about-vm::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.4rem;
  width: min(760px, 92%);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--ly-primary), #0a0a0a, var(--ly-primary), transparent);
  transform: translateX(-50%);
  animation: lyAboutStripe 4s ease-in-out infinite;
}

.ly-about-vm__head {
  text-align: center;
  margin-bottom: 1.4rem;
}

.ly-about-vm__head span {
  display: block;
  color: var(--ly-primary);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.ly-about-vm__head h2 {
  font-size: clamp(1.65rem, 2vw, 2.2rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  margin: 0;
}

.ly-about-vm__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.ly-about-vm__card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(185, 28, 28, 0.55), rgba(10, 10, 10, 0.12)) border-box;
  padding: 1.55rem;
  box-shadow: 0 16px 38px rgba(10, 10, 10, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ly-about-vm__card::after {
  content: "";
  position: absolute;
  right: -3.5rem;
  top: -3.5rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 28, 28, 0.14), transparent 68%);
}

.ly-about-vm__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 54px rgba(185, 28, 28, 0.16);
}

.ly-about-vm__card > p:first-child {
  color: var(--ly-primary);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.ly-about-vm__card h3 {
  font-size: 1.2rem;
  font-weight: 850;
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.ly-about-vm__card > p:last-child {
  color: #0a0a0a;
  font-size: 0.94rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.ly-about-vm__card--dark {
  color: #fff;
  border-color: rgba(185, 28, 28, 0.5);
  background:
    linear-gradient(135deg, #0a0a0a 0%, #190606 62%, #3b0a0a 100%) padding-box,
    linear-gradient(135deg, var(--ly-primary), rgba(255, 255, 255, 0.18)) border-box;
}

.ly-about-vm__card--dark::after {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 68%);
}

.ly-about-vm__card--dark > p:first-child {
  color: #fff;
}

.ly-about-vm__card--dark > p:last-child {
  color: rgba(255, 255, 255, 0.82);
}

@keyframes lyAboutStripe {
  0%,
  100% {
    opacity: 0.7;
    transform: translateX(-50%) scaleX(0.92);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
  }
}

@media (max-width: 991.98px) {
  .ly-about-page__title {
    margin-bottom: 2rem;
  }

  .ly-about-tabs {
    display: flex;
    overflow-x: auto;
    gap: 0.5rem;
    padding-bottom: 0.35rem;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
  }

  .ly-about-tabs a {
    flex: 0 0 auto;
    min-height: 2.8rem;
    border: 1px solid rgba(185, 28, 28, 0.45);
    border-radius: 999px;
    padding: 0 0.85rem;
    white-space: nowrap;
  }

  .ly-about-feature-content {
    grid-template-columns: 1fr;
  }

  .ly-about-vm__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .ly-about-page {
    padding-top: 2.5rem !important;
  }

  .ly-about-copy,
  .ly-about-content-block p,
  .ly-about-final {
    font-size: 0.9rem;
  }
}

/* ——— Bayilik ——— */
.ly-dealer-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 16%, rgba(185, 28, 28, 0.14), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fafafa 100%);
  border-bottom: 1px solid var(--ly-border);
}

.ly-dealer-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0a0a0a, var(--ly-primary), #0a0a0a);
}

.ly-dealer-kicker {
  color: var(--ly-primary);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ly-dealer-title {
  max-width: 46rem;
  font-size: clamp(2.15rem, 4vw, 4.25rem);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.ly-dealer-lead {
  max-width: 42rem;
  color: #404040;
  font-size: 1.08rem;
  line-height: 1.75;
}

.ly-dealer-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 23rem;
  border-radius: 28px;
  padding: 4.9rem 1.5rem 1.5rem;
  color: #0a0a0a;
  background: linear-gradient(135deg, #ffffff 0%, #fff5f5 58%, #fee2e2 100%);
  border: 1px solid rgba(185, 28, 28, 0.18);
  box-shadow: 0 28px 70px rgba(185, 28, 28, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: end;
  filter: contrast(1.08);
}

.ly-dealer-hero-card::before {
  content: "Yeni çıkan yayınlar";
  position: absolute;
  left: 1.5rem;
  top: 1.45rem;
  z-index: 1;
  color: #0a0a0a;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.ly-dealer-hero-card::after {
  content: "";
  position: absolute;
  right: -4rem;
  top: -4rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 28, 28, 0.24), transparent 68%);
}

.ly-dealer-hero-card > span {
  color: var(--ly-primary);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.ly-dealer-hero-card * {
  color: #0a0a0a;
}

.ly-dealer-hero-card > span {
  color: var(--ly-primary);
}

.ly-dealer-hero-card > strong {
  position: relative;
  z-index: 1;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.ly-dealer-hero-card__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.ly-dealer-hero-card__stats div {
  border: 1px solid rgba(185, 28, 28, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.8rem;
}

.ly-dealer-hero-card__stats b,
.ly-dealer-hero-card__stats small {
  display: block;
}

.ly-dealer-hero-card__stats b {
  font-size: 1.1rem;
  line-height: 1;
}

.ly-dealer-hero-card__stats small {
  color: #0a0a0a;
  margin-top: 0.25rem;
}

.ly-dealer-main {
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.ly-dealer-side {
  position: sticky;
  top: 6rem;
}

.ly-dealer-image {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, 0.1);
  background: #0a0a0a;
  box-shadow: 0 18px 46px rgba(10, 10, 10, 0.1);
}

.ly-dealer-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.ly-dealer-benefits {
  margin-top: 1rem;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 24px;
  background: #fff;
  padding: 1.25rem;
  box-shadow: 0 14px 34px rgba(10, 10, 10, 0.055);
}

.ly-dealer-benefits h2 {
  font-size: 1.25rem;
  font-weight: 850;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.ly-dealer-benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(185, 28, 28, 0.18);
}

.ly-dealer-benefit span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  color: #fff;
  background: var(--ly-primary);
  font-size: 0.75rem;
  font-weight: 900;
}

.ly-dealer-benefit h3 {
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.ly-dealer-benefit p {
  color: #525252;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.ly-dealer-form-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, 0.09);
  border-radius: 28px;
  background: #fff;
  padding: 1.35rem;
  box-shadow: 0 24px 60px rgba(10, 10, 10, 0.08);
}

.ly-dealer-form-panel::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  top: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ly-primary), #0a0a0a, var(--ly-primary));
}

.ly-dealer-form-head {
  margin-bottom: 1.2rem;
}

.ly-dealer-form-head span {
  color: var(--ly-primary);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ly-dealer-form-head h2 {
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  margin: 0.35rem 0 0.35rem;
}

.ly-dealer-form-head p {
  color: #525252;
  margin: 0;
}

.ly-dealer-form-panel .form-label {
  font-size: 0.82rem;
  font-weight: 800;
  color: #262626;
}

.ly-dealer-input {
  min-height: 3rem;
  border-radius: 14px;
  border-color: rgba(10, 10, 10, 0.12);
  background: #fafafa;
}

.ly-dealer-input:focus {
  background: #fff;
  border-color: rgba(185, 28, 28, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(185, 28, 28, 0.12);
}

.ly-dealer-submit {
  min-height: 3.25rem;
  font-weight: 800;
  border-color: var(--ly-primary);
  background: var(--ly-primary);
  box-shadow: 0 12px 28px rgba(185, 28, 28, 0.22);
}

.ly-dealer-hero .btn-primary,
.ly-dealer-submit:hover,
.ly-dealer-submit:focus {
  border-color: var(--ly-primary-dark);
  background: var(--ly-primary-dark);
}

.ly-dealer-hero .btn-primary {
  box-shadow: 0 12px 28px rgba(185, 28, 28, 0.22);
}

.ly-dealer-hero .btn-primary:hover,
.ly-dealer-hero .btn-primary:focus {
  border-color: var(--ly-primary-dark);
  background: var(--ly-primary-dark);
}

.ly-dealer-alert {
  border-radius: 18px;
}

@media (max-width: 991.98px) {
  .ly-dealer-side {
    position: static;
  }
}

@media (max-width: 575.98px) {
  .ly-dealer-hero-card {
    min-height: 19rem;
  }

  .ly-dealer-hero-card__stats {
    grid-template-columns: 1fr;
  }

  .ly-dealer-form-panel {
    padding: 1rem;
    border-radius: 22px;
  }
}

/* ——— Iletisim ——— */
.ly-contact-hero {
  position: relative;
  overflow: hidden;
  padding: 3.25rem 0;
  background:
    radial-gradient(circle at 92% 20%, rgba(185, 28, 28, 0.14), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fafafa 100%);
  border-bottom: 1px solid var(--ly-border);
}

.ly-contact-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--ly-primary);
}

.ly-contact-hero::after {
  content: "";
  position: absolute;
  right: -4rem;
  top: -5rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 28, 28, 0.14), transparent 66%);
  pointer-events: none;
}

.ly-contact-hero__inner {
  position: relative;
  max-width: 46rem;
  z-index: 1;
}

.ly-contact-hero__inner span {
  display: block;
  color: var(--ly-primary);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.ly-contact-hero__inner h1 {
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  margin-bottom: 0.6rem;
}

.ly-contact-hero__inner p {
  color: #404040;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.ly-contact-panel {
  border: 1px solid rgba(10, 10, 10, 0.09);
  border-radius: 24px;
  background: #fff;
  padding: 1.25rem;
  box-shadow: 0 18px 46px rgba(10, 10, 10, 0.06);
}

.ly-contact-info {
  border: 1px solid rgba(185, 28, 28, 0.18);
  border-radius: 18px;
  background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
  padding: 1.15rem 1.25rem;
  margin-bottom: 1.25rem;
}

.ly-contact-info__title {
  color: var(--ly-primary);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.ly-contact-details {
  display: grid;
  gap: 0.85rem;
}

.ly-contact-details__item {
  display: grid;
  gap: 0.2rem;
}

.ly-contact-details__label {
  color: #6b7280;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ly-contact-details__value,
.ly-contact-details__link {
  color: #0a0a0a;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.ly-contact-details__link:hover {
  color: var(--ly-primary);
}

.ly-preline {
  white-space: pre-line;
}

.ly-footer__contact {
  display: grid;
  gap: 0.65rem;
}

.ly-footer__contact-item {
  display: grid;
  gap: 0.15rem;
}

.ly-footer__contact-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ly-footer__contact-value {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  line-height: 1.45;
}

.ly-footer__contact-note {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.ly-contact-input {
  border-radius: 12px;
  border-color: rgba(10, 10, 10, 0.12);
  background: #fafafa;
}

.ly-contact-input:focus {
  background: #fff;
  border-color: rgba(185, 28, 28, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(185, 28, 28, 0.12);
}

.ly-contact-submit {
  min-height: 3rem;
  border-color: var(--ly-primary);
  background: var(--ly-primary);
  font-weight: 800;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(185, 28, 28, 0.22);
}

.ly-contact-submit:hover,
.ly-contact-submit:focus {
  border-color: var(--ly-primary-dark);
  background: var(--ly-primary-dark);
}

/* ——— Bayilerimiz (satış noktaları) ——— */
.ly-dealers-summary {
  font-size: 0.95rem;
}

.ly-dealers-region__title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--ly-primary);
  color: #0a0a0a;
}

.ly-dealer-card {
  border: 1px solid var(--ly-border);
  border-radius: 1rem;
  padding: 1.15rem 1.25rem;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.ly-dealer-card__name {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #0a0a0a;
}

.ly-dealer-card__row {
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #334155;
}

.ly-dealer-card__row:last-child {
  margin-bottom: 0;
}

.ly-dealer-card__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.15rem;
}

.ly-dealer-card__link {
  color: var(--ly-primary);
  font-weight: 600;
  text-decoration: none;
}

.ly-dealer-card__link:hover {
  text-decoration: underline;
}

/* ——— Bayi girişi ——— */
.ly-dealer-login-top {
  border-bottom: 1px solid var(--ly-border);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

.ly-dealer-login-back {
  color: #0a0a0a;
  font-weight: 800;
  text-decoration: none;
}

.ly-dealer-login-back:hover {
  color: var(--ly-primary);
}

.ly-dealer-login-brand {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.ly-dealer-login-brand span {
  color: var(--ly-primary);
}

.ly-dealer-login {
  min-height: calc(100vh - 86px);
  padding: 4rem 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(185, 28, 28, 0.14), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.ly-dealer-login-shell {
  display: grid;
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
  align-items: center;
  max-width: 520px;
  min-height: calc(100vh - 220px);
  margin: 0 auto;
}

.ly-dealer-login-info,
.ly-dealer-login-card {
  border-radius: 28px;
}

.ly-dealer-login-info {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(77, 7, 7, 0.9)),
    url("../img/hero-slide-1.svg") center / cover;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 31rem;
  box-shadow: 0 28px 70px rgba(10, 10, 10, 0.18);
}

.ly-dealer-login-info::after {
  content: "";
  position: absolute;
  right: -4rem;
  top: -4rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 28, 28, 0.58), transparent 70%);
}

.ly-dealer-login-info > * {
  position: relative;
  z-index: 1;
}

.ly-dealer-login-kicker,
.ly-dealer-login-card__head span {
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ly-dealer-login-kicker {
  color: #fecaca;
  margin-bottom: 0.8rem;
}

.ly-dealer-login-info h1 {
  max-width: 38rem;
  font-size: clamp(2rem, 3vw, 3.45rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.ly-dealer-login-info p {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.ly-dealer-login-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.ly-dealer-login-points span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.55rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.ly-dealer-login-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.09);
  padding: 1.5rem;
  box-shadow: 0 24px 60px rgba(10, 10, 10, 0.08);
}

.ly-dealer-login-card::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  top: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ly-primary), #0a0a0a, var(--ly-primary));
}

.ly-dealer-login-card__head {
  margin-bottom: 1.35rem;
}

.ly-dealer-login-card__head span {
  color: var(--ly-primary);
}

.ly-dealer-login-card__head h2 {
  font-size: 2rem;
  font-weight: 850;
  letter-spacing: -0.045em;
  margin: 0.35rem 0;
}

.ly-dealer-login-card__head p {
  color: #525252;
  margin-bottom: 0;
}

.ly-dealer-login-card .form-label {
  font-size: 0.84rem;
  font-weight: 800;
}

.ly-dealer-login-input {
  min-height: 3.1rem;
  border-radius: 14px;
  background: #fafafa;
  border-color: rgba(10, 10, 10, 0.12);
}

.ly-dealer-login-input:focus {
  background: #fff;
  border-color: rgba(185, 28, 28, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(185, 28, 28, 0.12);
}

.ly-dealer-login-submit {
  min-height: 3.2rem;
  border-radius: 999px;
  border-color: var(--ly-primary);
  background: var(--ly-primary);
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(185, 28, 28, 0.22);
}

.ly-dealer-login-submit:hover,
.ly-dealer-login-submit:focus {
  border-color: var(--ly-primary-dark);
  background: var(--ly-primary-dark);
}

.ly-dealer-login-help {
  margin-top: 1rem;
  border: 1px solid rgba(185, 28, 28, 0.18);
  border-radius: 16px;
  background: #fff5f5;
  padding: 0.9rem;
}

.ly-dealer-login-help strong,
.ly-dealer-login-help span,
.ly-dealer-login-help a {
  display: block;
}

.ly-dealer-login-help strong {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.ly-dealer-login-help span {
  color: #525252;
  font-size: 0.82rem;
  line-height: 1.55;
  margin-bottom: 0.65rem;
}

.ly-dealer-login-help a {
  color: var(--ly-primary);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
}

.ly-dealer-login-help a:hover {
  color: var(--ly-primary-dark);
}

@media (max-width: 991.98px) {
  .ly-dealer-login-shell {
    grid-template-columns: 1fr;
  }

  .ly-dealer-login-info {
    min-height: 24rem;
  }
}

@media (max-width: 575.98px) {
  .ly-dealer-login {
    padding: 2rem 0;
  }

  .ly-dealer-login-info,
  .ly-dealer-login-card {
    border-radius: 22px;
    padding: 1.15rem;
  }
}

.cms-page-body {
  font-size: 1rem;
  line-height: 1.75;
}

.cms-page-body h2,
.cms-page-body h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--ly-dark, #1e293b);
}

.cms-page-body p {
  margin-bottom: 1rem;
}

.cms-page-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.cms-page-body table {
  width: 100%;
  margin-bottom: 1rem;
}

.cms-page-body blockquote {
  margin: 1rem 0;
  padding: 0.75rem 1rem;
  border-left: 4px solid var(--ly-primary, #b91c1c);
  background: #f8fafc;
}
