/* ===== Design Tokens ===== */
:root {
  --clr-bg: #F8F6F1;
  --clr-bg-alt: #fefefe;

  --clr-primary: #0A3B7A;
  --clr-accent: #1e73e8;
  --clr-text: #1F2D3D;
  --clr-white: #FFFFFF;
  --clr-card: #FFFFFF;
  --clr-border: #E2E6ED;
  --clr-muted: #5A6A7E;
  --clr-whatsapp: #32a74d;
  --clr-whatsapp-hover: #28993d;
  --ff-heading: 'Fraunces', Georgia, serif;
  --ff-body: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --container: 1140px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(10, 59, 122, .06);
  --shadow-md: 0 8px 30px rgba(10, 59, 122, .08);
  --shadow-lg: 0 16px 48px rgba(10, 59, 122, .12);
  --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
  --clr-omer: #552c03;
  --clr-ebubekir: #570967;
  --clr-osman: #003787;
  --clr-ali: #ab0600;
   --clr-amine: #3f8f2f;
    --clr-hatice: #8b1f52;
     --clr-aise: #d4148e;
      --clr-fatima: #c8102e;
  --clr-hero-arka: #315F8C;
}

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

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--ff-body);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.7;
  font-size: 16px;
  padding-top: 76px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1,
h2,
h3 {
  font-family: var(--ff-heading);
  line-height: 1.25;
  color: var(--clr-primary);
  font-weight: 600;
}

h1 {
  font-size: 2.85rem;
  letter-spacing: 0;
}

h2 {
  font-size: 2.1rem;
  margin-bottom: 0.6em;
  letter-spacing: 0;
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-subtitle {
  color: var(--clr-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: var(--ff-body);
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--clr-primary);
  color: var(--clr-white);
}

.btn-primary:hover {
  background: #0d4a96;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(10, 59, 122, .25);
}

.btn-whatsapp {
  background: var(--clr-whatsapp);
  color: var(--clr-white);
}

.btn-whatsapp:hover {
  background: var(--clr-whatsapp-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(18, 140, 126, .25);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--clr-primary);
  color: var(--clr-primary);
}

.btn-outline:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
}

.btn-accent {
  background: var(--clr-accent);
  color: var(--clr-white);
}

.btn-accent:hover {
  background: #1565d4;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(30, 115, 232, .25);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
  overflow: visible;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  position: relative;
  z-index: 120;
  align-self: stretch;
  display: flex;
  align-items: flex-start;
}

.brand-logo {
  height: 115px;
  width: 115px;
  object-fit: contain;
  background: var(--clr-bg-alt);
  padding: 10px;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 12px rgba(10, 59, 122, .08);
}

.brand-name {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  color: var(--clr-primary);
  font-weight: 700;
  letter-spacing: 0;
}

.brand-sub {
  font-size: 0.68rem;
  color: var(--clr-muted);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-list {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-list a {
  font-weight: 600;
  font-size: 0.88rem;
  transition: color var(--transition);
  color: var(--clr-text);
  position: relative;
}

.nav-list > li:not(.dropdown):not(.desktop-nav-cta):not(.mobile-menu-head):not(.mobile-menu-cta) > a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-list > li:not(.dropdown):not(.desktop-nav-cta):not(.mobile-menu-head):not(.mobile-menu-cta) > a:hover::after {
  width: 100%;
}

.nav-list a:hover {
  color: var(--clr-accent);
}

.nav-list .btn-whatsapp,
.nav-list .btn-whatsapp:hover {
  color: var(--clr-white);
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.dropdown-arrow {
  display: inline-flex;
  align-items: center;
  transition: transform 0.25s ease;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* --- Mega Dropdown --- */
.mega-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 460px;
  z-index: 110;
  background: var(--clr-white);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(10, 59, 122, .14), 0 0 0 1px rgba(10, 59, 122, .06);
  padding: 0;
  opacity: 0;
  transform-origin: top center;
  animation: none;
}

.mega-dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  width: 100%;
  height: 16px;
}

.dropdown:hover .mega-dropdown {
  display: block;
  opacity: 1;
  animation: megaFadeIn 0.22s ease forwards;
}

@keyframes megaFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Mega header */
.mega-dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem 0.65rem;
  border-bottom: 1px solid var(--clr-border);
}

.mega-dropdown-label {
  font-family: var(--ff-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mega-dropdown-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--clr-accent);
  background: rgba(30, 115, 232, .08);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* Mega grid */
.mega-dropdown-grid {
  padding: 0.5rem;
  list-style: none;
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: var(--clr-text);
  position: relative;
}

.mega-item:hover {
  background: var(--clr-bg);
  box-shadow: 0 2px 8px rgba(10, 59, 122, .04);
}

.mega-item:hover .mega-item-arrow {
  opacity: 1;
  transform: translateX(0);
}

.mega-item:hover .mega-item-icon {
  transform: scale(1.06);
}

/* Icon */
.mega-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 11px;
  background: var(--icon-bg, #E8F0FE);
  color: var(--icon-clr, var(--clr-primary));
  transition: transform 0.25s ease;
}

.mega-item-icon svg {
  stroke: var(--icon-clr, var(--clr-primary));
}

/* Content */
.mega-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
}

.mega-item-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--clr-primary);
  line-height: 1.3;
}

.mega-item-desc {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--clr-muted);
  line-height: 1.35;
}

/* Arrow */
.mega-item-arrow {
  font-size: 1.3rem;
  color: var(--clr-accent);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  font-weight: 300;
  margin-left: auto;
}

/* Mega footer */
.mega-dropdown-footer {
  border-top: 1px solid var(--clr-border);
  padding: 0.7rem 1.25rem;
  background: rgba(248, 246, 241, .5);
  border-radius: 0 0 16px 16px;
}

.mega-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--clr-accent);
  transition: color 0.2s ease;
}

.mega-footer-link:hover {
  color: var(--clr-primary);
}

.mega-footer-link svg {
  stroke: currentColor;
}

/* Active state for nav links */
.nav-list a.is-active {
  color: var(--clr-accent);
}

.dropdown-toggle.is-active .dropdown-arrow svg {
  stroke: var(--clr-accent);
}

/* Hamburger (mobile only - hidden on desktop) */
.hamburger {
  display: none;
  position: relative;
  z-index: 1002;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--clr-primary);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-overlay,
.mobile-menu-head,
.nav-desc,
.mobile-menu-cta {
  display: none;
}

/* ===== Hero ===== */
.hero {
  padding: 4.5rem 0 4rem;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-title {
  margin-bottom: 1.25rem;
}

.hero-text {
  color: var(--clr-muted);
  margin-bottom: 2rem;
  line-height: 1.4;
  font-size: 1.20rem;
}

.hero-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-btn-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  object-fit: contain;
  fill: currentColor;
}

.hero-book-icon {
  width: 20px;
  flex-basis: 20px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2.25rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--clr-muted);
  background: var(--clr-white);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  border: 1px solid var(--clr-border);
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  stroke: var(--clr-accent);
  flex-shrink: 0;
}

.hero-image {
  background: var(--clr-white);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clr-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Set Cards ===== */
#setler {
  background: #F3F7FB;
}

.sets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.other-sets-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.other-sets-grid .set-card-buttons {
  flex-direction: column;
  align-items: stretch;
}

.other-sets-grid .set-card-buttons .btn {
  width: 100%;
}

.set-card {
  background: var(--clr-white);
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.set-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.set-card-image {
  aspect-ratio: 16 / 10;
  background: var(--clr-bg);
  border-bottom: 1px solid #C6DFF4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.set-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.set-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.set-card-body h3 {
  margin-bottom: 0.5rem;
  font-size: 1.45rem;
}

.set-card-body p {
  font-size: 1.0rem;
  color: var(--clr-muted);
  margin-bottom: 1.25rem;
  margin-top: 0.75rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(0, 46, 102, .12);
  line-height: 1.6;
  flex: 1;
}

#setler .set-card-body > p:not(.price-note) {
  padding-top: 0;
  border-top: 0;
}

.set-card-buttons {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.set-card-buttons .btn {
  flex: 1 1 0;
  min-width: 0;
  padding: 0.55rem 1.1rem;
  font-size: 0.86rem;
  border-radius: 8px;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.set-detail-icon {
  width: 23px;
  height: 18px;
  flex: 0 0 17px;
  object-fit: contain;
}

.set-card-wa-btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: currentColor;
}

.set-card-meta {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--clr-accent);
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}

/* ===== Price Blocks ===== */
.price-box {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.28rem;
  padding: 0.78rem 0.88rem;
  border: 1px solid rgba(214, 184, 74, 0.48);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 237, 0.98), rgba(255, 255, 255, 0.96));
  box-shadow: 0 10px 24px rgba(35, 49, 75, 0.06);
}

.price-box::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #D6B84A, #0A3B7A);
}

.price-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  min-width: 0;
}

.price-old {
  color: #7D8792;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(122, 20, 20, 0.72);
}

.price-discount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0.18rem 0.5rem;
  border: 1px solid rgba(10, 59, 122, 0.16);
  border-radius: 999px;
  background: #EAF4FC;
  color: var(--clr-primary);
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.price-current {
  color: var(--clr-primary);
  font-family: var(--ff-body);
  font-size: clamp(1.26rem, 1.7vw, 1.52rem);
  font-weight: 900;
  line-height: 1.08;
}

.price-note,
.set-card-body .price-note,
.book-card-body .price-note {
  margin: 0;
  padding: 0;
  border: 0;
  color: #4B5D6D;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
  flex: initial;
}

.price-box-set {
  margin: 0.2rem 0 0.35rem;
}

.price-box-set .price-main-row {
  align-items: center;
}

.set-price-line {
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 0.32rem;
  min-width: 0;
  white-space: nowrap;
}

.price-box-set .price-current {
  font-size: 17px;
}

.price-box-set .price-discount {
  border-radius: 6px;
}

.price-box-set .price-note {
  margin-top: 0.06rem;
}

@media (max-width: 560px) {
  #setler .set-price-line {
    gap: 0.22rem;
  }

  #setler .price-box-set .price-old {
    font-size: 0.78rem;
  }

  #setler .price-box-set .price-replace {
    font-size: 0.72rem;
  }

  #setler .price-box-set .price-current {
    font-size: 14.5px;
  }
}

@media (max-width: 360px) {
  #setler .price-box-set {
    margin-right: -0.35rem;
    margin-left: -0.35rem;
    padding: 0.64rem 0.56rem;
  }

  #setler .price-box-set .price-main-row {
    gap: 0.34rem;
  }

  #setler .set-price-line {
    flex: 1 1 auto;
    gap: 0.15rem;
  }

  #setler .price-box-set .price-old,
  #setler .price-box-set .price-replace {
    font-size: 0.64rem;
  }

  #setler .price-box-set .price-current {
    font-size: 14.5px;
  }

  #setler .price-box-set .price-discount {
    min-height: 22px;
    padding: 0.14rem 0.34rem;
    font-size: 0.62rem;
  }

  #setler .price-box-set .price-note {
    font-size: 0.7rem;
  }
}

.price-box-book {
  margin: 0.72rem 0 0;
  padding: 0.62rem 0.72rem;
  gap: 0.22rem;
}

.price-box-book .price-main-row {
  align-items: center;
}

.book-single-price {
  display: grid;
  flex: 1 1 auto;
  gap: 0.14rem;
  min-width: 0;
}

.book-single-price-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.28rem;
}

.price-replace {
  color: #7D8792;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.1;
}

.price-box-book .price-current {
  font-size: 1.12rem;
}

.price-box-book .price-old {
  font-size: 0.8rem;
}

.price-box-book .price-discount {
  flex: 0 0 auto;
  flex-direction: column;
  gap: 0.18rem;
  width: 50px;
  min-height: 50px;
  padding: 0.38rem 0.38rem 0.38rem;
  border-radius: 6px;
  text-align: center;
  white-space: normal;
}

.price-box-book .price-discount-percent {
  display: block;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 0.95;
}

.price-box-book .price-discount-label {
  display: block;
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.mixed-set-banner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: center;
  margin: -0.4rem 0 1.35rem;
  padding: 1.05rem 1.2rem;
  border: 1px solid rgba(214, 184, 74, 0.52);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 249, 237, 0.98), rgba(234, 244, 252, 0.94));
  box-shadow: 0 16px 34px rgba(23, 33, 58, 0.08);
}

.mixed-set-kicker {
  display: block;
  margin-bottom: 0.28rem;
  color: #7A5E18;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mixed-set-banner strong {
  display: block;
  color: var(--clr-primary);
  font-family: var(--ff-heading);
  font-size: clamp(1.26rem, 2.3vw, 1.7rem);
  line-height: 1.12;
}

.mixed-set-banner p {
  margin: 0;
  color: #3D4F60;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.55;
}

.mixed-set-banner-offer {
  position: relative;
  overflow: hidden;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  align-items: start;
  padding: 0.82rem 1rem 0.88rem;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 250, 239, 0.98) 0%, rgba(255, 255, 255, 0.94) 48%, rgba(235, 245, 252, 0.92) 100%);
}

.mixed-set-banner-offer::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #D6B84A 0%, #0A3B7A 100%);
}

.mixed-set-offer-top,
.mixed-set-banner-offer .mixed-set-offer-copy {
  position: relative;
  z-index: 1;
}

.mixed-set-offer-top {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0.9rem;
  min-width: 0;
  padding-bottom: 0.58rem;
  border-bottom: 1px solid rgba(10, 59, 122, 0.1);
}

.mixed-set-price-block {
  display: flex;
  flex: 0 1 auto;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0.48rem;
  min-width: 0;
}

.mixed-set-price-kicker {
  flex: 0 0 auto;
  color: #7A5E18;
  font-size: clamp(0.94rem, 1.15vw, 1.08rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.mixed-set-banner-offer .mixed-set-price-line {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0.3rem;
  color: var(--clr-primary);
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.28vw, 1.2rem);
  font-weight: 900;
  line-height: 1.12;
  white-space: nowrap;
}

.mixed-set-old-price,
.mixed-set-replace {
  color: #7D8792;
  font-size: 0.82em;
  font-weight: 850;
}

.mixed-set-old-price {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(122, 20, 20, 0.72);
}

.mixed-set-current-price {
  color: var(--clr-primary);
  font-size: 1.16em;
  font-weight: 950;
}

.mixed-set-unit-price {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: baseline;
  gap: 0.28rem;
  padding: 0 0 0 0.9rem;
  border-left: 1px solid rgba(10, 59, 122, 0.16);
  color: var(--clr-primary);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.12;
  white-space: nowrap;
}

.mixed-set-unit-price strong {
  display: inline;
  color: var(--clr-primary);
  font-family: var(--ff-body);
  font-size: 1.08em;
  line-height: 1.1;
}

.mixed-set-banner-offer .mixed-set-offer-copy {
  max-width: none;
  font-size: 0.82rem;
  line-height: 1.36;
}

.mixed-set-banner-offer .mixed-set-offer-copy strong {
  display: inline;
  color: var(--clr-primary);
  font-family: inherit;
  font-size: inherit;
  font-weight: 800;
}

:is(.four-caliphs-books, .mubarek-women-books) .mixed-set-banner-offer {
  display: block;
  padding: 1.05rem 1.18rem;
  border-color: var(--clr-accent);
  border-radius: 8px;
  background: var(--clr-white);
  box-shadow: 0 18px 42px rgba(10, 59, 122, 0.09);
}

:is(.four-caliphs-books, .mubarek-women-books) .mixed-set-banner-offer::after {
  width: 4px;
  background: var(--clr-accent);
}

:is(.four-caliphs-books, .mubarek-women-books) .mixed-set-offer-top {
  justify-content: space-between;
  align-items: center;
  gap: 1.15rem;
  padding-bottom: 0;
  border-bottom: 0;
}

:is(.four-caliphs-books, .mubarek-women-books) .mixed-set-price-block {
  align-items: center;
  gap: 0.78rem;
}

:is(.four-caliphs-books, .mubarek-women-books) .mixed-set-price-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding-right: 0.85rem;
  border-right: 1px solid rgba(10, 59, 122, 0.14);
  color: var(--clr-accent);
  font-size: clamp(0.94rem, 1.1vw, 1.04rem);
  letter-spacing: 0;
}

:is(.four-caliphs-books, .mubarek-women-books) .mixed-set-price-icon {
  width: 1.12rem;
  height: 1.12rem;
  flex: 0 0 auto;
  opacity: 1;
  filter: invert(43%) sepia(98%) saturate(2868%) hue-rotate(202deg) brightness(96%) contrast(89%);
}

:is(.four-caliphs-books, .mubarek-women-books) .mixed-set-old-price,
:is(.four-caliphs-books, .mubarek-women-books) .mixed-set-replace {
  color: rgba(10, 59, 122, 0.58);
}

:is(.four-caliphs-books, .mubarek-women-books) .mixed-set-banner-offer .mixed-set-price-line {
  gap: 0.38rem;
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
}

:is(.four-caliphs-books, .mubarek-women-books) .mixed-set-current-price {
  font-family: var(--ff-heading);
  font-size: 1.32em;
  letter-spacing: 0;
}

:is(.four-caliphs-books, .mubarek-women-books) .mixed-set-unit-price {
  align-items: center;
  justify-content: flex-start;
  gap: 0.34rem;
  padding: 0.55rem 0.72rem;
  border: 1px solid var(--clr-accent);
  border-radius: 6px;
  background: var(--clr-white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

:is(.four-caliphs-books, .mubarek-women-books) .mixed-set-unit-price .mixed-set-price-icon {
  filter: invert(43%) sepia(98%) saturate(2868%) hue-rotate(202deg) brightness(96%) contrast(89%);
}

:is(.four-caliphs-books, .mubarek-women-books) .mixed-set-unit-price span {
  color: var(--clr-accent);
}

:is(.four-caliphs-books, .mubarek-women-books) .mixed-set-unit-price strong {
  color: var(--clr-accent);
  font-size: 1em;
  font-weight: 950;
  margin-left: 0;
}

@media (min-width: 1100px) {
  .mixed-set-banner-offer .mixed-set-offer-copy {
    white-space: nowrap;
  }
}

.set-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
  margin-bottom: 1.25rem;
  max-width: 100%;
}

.tag {
  display: inline-block;
  font-size: clamp(0.54rem, 1.1vw, 0.68rem);
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: var(--clr-bg-alt);
  color: var(--clr-primary);
  border: 1px solid var(--clr-border);
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
  max-width: 100%;
}

/* ===== Section Alt BG ===== */
.section-alt {
  background: var(--clr-bg-alt);
}

/* ===== Audience Grid 5 cols ===== */
.audience-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.audience-card svg {
  width: 28px;
  height: 28px;
  stroke: var(--clr-accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 0.6rem;
}

/* ===== Features Grid ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--clr-bg-alt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--clr-accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin-bottom: 0.4rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.6;
}

/* ===== Print Quality ===== */
.print-badges {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.print-badge {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.35rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
  width: 100%;
  transition: var(--transition);
}

.print-badge:hover {
  border-color: var(--clr-accent);
  box-shadow: var(--shadow-sm);
}

.print-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60px;
  margin: 0;
  padding: 0 1rem;
  background: #f0f7ff;
  border-radius: 14px;
}

.print-badge-icon img,
.print-badge-icon svg {
  height: 54px;
}

.print-badge-icon img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  border-radius: 0;
}

.print-badge-icon svg {
  width: 54px;
  stroke: var(--clr-accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.print-badge span {
  display: block;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--clr-primary);
}

/* ===== Accordion / FAQ ===== */
.accordion {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 1rem 1.25rem;
  width: 100%;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--clr-card);
  transition: var(--transition);
}

.accordion-item:hover {
  border-color: #c5cdd8;
}

.accordion-btn {
  width: 100%;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-primary);
  text-align: left;
  transition: var(--transition);
}

.accordion-btn::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 400;
  transition: var(--transition);
  color: var(--clr-accent);
  flex-shrink: 0;
  margin-left: 1rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-bg-alt);
  border-radius: 50%;
}

.accordion-item.open .accordion-btn::after {
  content: '−';
  background: var(--clr-accent);
  color: var(--clr-white);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-body-inner {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.7;
}

/* ===== Lead Form ===== */
.lead-section {
  background: var(--clr-primary);
  color: var(--clr-white);
}

.lead-section h2 {
  color: var(--clr-white);
}

.lead-section .section-subtitle {
  color: rgba(255, 255, 255, .7);
}

.lead-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.lead-form input,
.lead-form select {
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .1);
  color: var(--clr-white);
  font-size: 0.9rem;
  font-family: var(--ff-body);
  transition: var(--transition);
}

.lead-form input:focus,
.lead-form select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .15);
}

.lead-form input::placeholder {
  color: rgba(255, 255, 255, .5);
}

.lead-form select option {
  color: var(--clr-text);
  background: var(--clr-white);
}

.lead-form .btn {
  width: 100%;
  justify-content: center;
  background: var(--clr-white);
  color: var(--clr-primary);
  font-weight: 700;
}

.lead-form .btn:hover {
  background: #eef4ff;
}

.form-success {
  display: none;
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, .12);
  border-radius: var(--radius-sm);
  margin-top: 1rem;
}

.form-success.show {
  display: block;
}

/* ===== WhatsApp CTA ===== */
.cta-section {
  text-align: center;
  background: var(--clr-bg-alt);
}

.cta-section p {
  color: var(--clr-muted);
  max-width: 480px;
  margin: 0 auto 2rem;
  font-size: 1rem;
}

/* ===== Detail Page: Book Cards ===== */
#kitaplar {
  background: #F3F7FB;
}

#kitaplar .container {
  max-width: 1320px;
}

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

.book-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  transition: var(--transition);
  display: flex;
  align-items: stretch;
  height: 100%;
  min-height: 255px;
}

.book-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.book-card-image {
  flex: 0 0 330px;
  width: 330px;
  min-width: 330px;
  max-width: 330px;
  aspect-ratio: 4 / 5;
  background: #EAF4FC;
  border-right: 1px solid #C6DFF4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#kitaplar.narrow-book-images .book-card-image {
  flex-basis: 300px;
  width: 300px;
  min-width: 300px;
  max-width: 300px;
}

.book-card-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.book-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-card-body {
  padding: 1.45rem 1.55rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
}

.book-card-body h3 {
  margin-bottom: 0.35rem;
  font-size: 1.46rem;
}

.book-card-body .honorific {
  font-family: var(--ff-body);
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(0, 46, 102, .55);
  vertical-align: 0.12em;
  white-space: nowrap;
}

.book-card-body p {
  font-size: 0.94rem;
  color: var(--clr-muted);
  line-height: 1.6;
  flex-grow: 1;
  margin-top: 0.75rem;
  margin-bottom: 0;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(0, 46, 102, .12);
}

/* ===== Detail Page: Benefits ===== */
.benefits-list {
  max-width: 600px;
  margin: 0 auto;
}

.benefits-list li {
  padding: 0.85rem 0 0.85rem 2rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--clr-muted);
  line-height: 1.6;
  border-bottom: 1px solid var(--clr-border);
}

.benefits-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-accent);
}

/* ===== Detail Page: Audience Cards ===== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.audience-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--clr-primary);
  transition: var(--transition);
}

.audience-card:hover {
  border-color: var(--clr-accent);
  box-shadow: var(--shadow-sm);
}

/* ===== Footer ===== */
.footer {
  background: var(--clr-primary);
  color: rgba(255, 255, 255, .7);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1.35fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer h4 {
  color: var(--clr-white);
  font-family: var(--ff-heading);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.footer p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer a {
  font-size: 0.88rem;
  display: block;
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}

.footer a:hover {
  color: #8ab4f8;
}

.footer-link,
.footer .footer-social-link {
  color: rgba(255, 255, 255, .76);
}

.footer-socials {
  display: grid;
  gap: 0.75rem;
}

.footer .footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  margin-bottom: 0;
  line-height: 1.35;
}

.footer-social-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.footer-social-icon-whatsapp {
  fill: currentColor;
}

.footer-social-icon-instagram {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 1.25rem;
  font-size: 0.8rem;
  text-align: center;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  body.nav-open {
    overflow: hidden;
    overscroll-behavior: none;
  }

  .brand-logo {
    height: 100px;
    width: 100px;
    padding: 9px;
    border-radius: 0 0 15px 15px;
  }

  .section {
    padding: 3.5rem 0;
  }

  .nav-list {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    width: min(84vw, 360px);
    height: 100vh;
    height: 100dvh;
    background: #FBFDFF;
    flex-direction: column;
    align-items: stretch;
    padding: .95rem .9rem 1rem;
    gap: 0;
    z-index: 1001;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    border-left: 1px solid rgba(10, 59, 122, .10);
    box-shadow: -22px 0 60px rgba(9, 32, 62, .18);
    opacity: 0;
    pointer-events: none;
    transform: translateX(104%);
    transition: transform .28s ease, opacity .2s ease;
  }

  .nav-list.open,
  body.nav-open .nav-list {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: block;
    background: rgba(6, 20, 40, .56);
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s ease;
  }

  .nav-overlay[hidden] {
    display: none;
  }

  .nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    margin-bottom: .62rem;
    padding: 0 0 .18rem;
  }

  .mobile-menu-brand {
    display: inline-flex;
    align-items: center;
    gap: .58rem;
    color: var(--clr-primary);
    font-size: 1.05rem;
    font-weight: 850;
    line-height: 1;
  }

  .mobile-menu-brand img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    border-radius: 10px;
    background: #FFFFFF;
    box-shadow: 0 6px 16px rgba(10, 59, 122, .08);
  }

  .mobile-menu-close {
    position: relative;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(10, 59, 122, .10);
    border-radius: 11px;
    background: #FFFFFF;
    color: var(--clr-primary);
    cursor: pointer;
  }

  .mobile-menu-close span {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .mobile-menu-close span:first-child {
    transform: rotate(45deg);
  }

  .mobile-menu-close span:last-child {
    transform: rotate(-45deg);
  }

  .nav-list li {
    width: 100%;
    border-bottom: 0;
  }

  .nav-list > li:not(.mobile-menu-head):not(.mobile-menu-cta) {
    border-bottom: 1px solid rgba(10, 59, 122, .08);
  }

  .nav-list a {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    min-height: 66px;
    padding: .78rem 0;
    border-radius: 0;
    background: transparent;
    color: var(--clr-primary);
    box-shadow: none;
  }

  .nav-list > li > a:not(.btn)::after {
    display: none;
  }

  .nav-link {
    flex-direction: column;
    gap: .16rem;
    text-align: left;
  }

  .nav-title {
    display: block;
    color: var(--clr-primary);
    font-size: 1.12rem;
    font-weight: 850;
    line-height: 1.18;
    white-space: nowrap;
  }

  .nav-desc {
    display: block;
    margin-top: .16rem;
    color: #728094;
    font-size: .84rem;
    font-weight: 600;
    line-height: 1.3;
  }

  .dropdown-toggle.nav-link {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: .72rem;
  }

  .dropdown-toggle.nav-link > span:first-child {
    display: block;
    min-width: 0;
  }

  .dropdown-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-left: 0;
    margin-top: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--clr-primary);
    font-size: .9rem;
    line-height: 1;
    transition: transform .22s ease;
  }

  .dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
  }

  .hamburger {
    display: flex;
  }

  body.nav-open .hamburger {
    opacity: 0;
    pointer-events: none;
  }

  .hamburger.open span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mega-dropdown {
    position: static;
    box-shadow: none;
    display: block;
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    transition: max-height .28s ease, opacity .22s ease, padding .22s ease;
    animation: none !important;
    transform: none !important;
  }

  .dropdown:hover .mega-dropdown {
    display: block;
    max-height: 0;
    opacity: 0;
  }

  .dropdown.open .mega-dropdown {
    display: block;
    max-height: 520px;
    opacity: 1;
    padding: .16rem 0 .34rem 0;
  }

  .mega-dropdown-header,
  .mega-dropdown-footer,
  .mega-item-icon,
  .mega-item-desc,
  .mega-item-arrow {
    display: none;
  }

  .mega-dropdown-grid {
    padding: 0 0 0 1rem;
  }

  .mega-item {
    padding: .46rem 0;
    border-radius: 0;
    gap: 0;
  }

  .mega-item-title {
    color: #24384E;
    font-size: .88rem;
    font-weight: 750;
    line-height: 1.3;
  }

  .mega-dropdown-grid li {
    border-bottom: none;
  }

  .desktop-nav-cta {
    display: none;
  }

  .mobile-menu-cta {
    display: grid;
    gap: 12px;
    margin-top: auto;
    padding: .72rem 0 0;
  }

  .mobile-cta,
  .nav-list .mobile-cta {
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: .72rem 1rem;
    border-radius: 11px;
    color: #FFFFFF;
    font-size: .92rem;
    font-weight: 850;
    box-shadow: none;
  }

  .mobile-cta-whatsapp,
  .nav-list .mobile-cta-whatsapp {
    background: var(--clr-whatsapp);
  }

  .mobile-cta-summary,
  .nav-list .mobile-cta-summary {
    background: var(--clr-primary);
  }

  .hero {
    padding: 2.5rem 0;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .mixed-set-banner {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-top: -0.15rem;
  }

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

  .books-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .audience-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .print-badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .print-badge {
    padding: 1.15rem 0.75rem;
  }

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

@media (max-width: 480px) {
  .print-badge {
    padding: 0.9rem 0.45rem;
  }

  .print-badge-icon {
    min-height: 52px;
    padding: 0 0.35rem;
  }

  .print-badge-icon img,
  .print-badge-icon svg {
    height: 46px;
  }

  .print-badge span {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .set-card-buttons .btn {
    width: auto;
    justify-content: center;
  }

  .set-card {
    min-height: 0;
  }

  .set-card-image {
    aspect-ratio: 16 / 10;
  }

  .audience-grid-5 {
    grid-template-columns: 1fr;
  }
}

/* ===== Card Detail Button ===== */
.book-detail-btn,
.set-card-buttons .set-detail-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.76rem 1.2rem;
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--clr-white);
  background: linear-gradient(135deg, var(--clr-primary), #0b4a93);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.01em;
  width: fit-content;
  min-width: 190px;
  box-shadow: 0 10px 24px rgba(0, 46, 102, .15);
}

.book-detail-btn::after,
.set-card-buttons .set-detail-btn::after {
  content: '\2192';
  font-size: 1rem;
  line-height: 1;
  transition: transform var(--transition);
}

.book-detail-btn:hover,
.set-card-buttons .set-detail-btn:hover {
  background: linear-gradient(135deg, #0d4a96, var(--clr-accent));
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 59, 122, .3);
}

.book-detail-btn:hover::after,
.set-card-buttons .set-detail-btn:hover::after {
  transform: translateX(3px);
}

.book-detail-btn:focus-visible,
.set-card-buttons .set-detail-btn:focus-visible {
  outline: 3px solid rgba(8, 91, 191, .24);
  outline-offset: 3px;
}

.book-detail-btn:active,
.set-card-buttons .set-detail-btn:active {
  transform: translateY(0);
}

.hero-pdf-summary-btn {
  margin-top: 0;
}

.home-collection-hero .hero-buttons .btn-whatsapp {
  border-radius: 8px;
}

.home-collection-hero .hero-buttons .btn-primary {
  border-radius: 8px;
}

.hero-pdf-summary-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  object-fit: contain;
}

.set-card-buttons .set-detail-btn {
  margin-top: 0;
  min-width: 0;
}

@media (max-width: 560px) {
  .set-card-body {
    padding: 1.35rem;
  }

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

  .tag {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 1.9rem;
    font-size: 0.62rem;
    padding: 0.16rem 0.24rem;
    border-radius: 4px;
    text-align: center;
    line-height: 1.12;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .set-card-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .set-card-buttons .btn,
  .set-card-buttons .set-detail-btn {
    flex: none;
    width: 100%;
    min-width: 0;
    padding: 0.78rem 1rem;
    font-size: 0.9rem;
    gap: 0.5rem;
  }

  .set-card-buttons .set-detail-btn::after {
    font-size: 1rem;
  }

  .set-detail-icon {
    width: 27px;
    height: 19px;
    flex-basis: 27px;
  }

  .set-card-wa-btn svg {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }
}

/* ===== Book Detail Modal ===== */
.book-modal-overlay {
  --book-modal-primary: #0A3B7A;
  --book-modal-primary-dark: #002E66;
  --book-modal-accent: #1E73E8;
  --book-modal-soft: #EAF4FC;
  --book-modal-surface: #F3F7FB;
  --book-modal-border: #C6DFF4;
  --book-modal-text: #1B2B3A;
  --book-modal-muted: #5D7083;
  --book-modal-overlay: rgba(10, 30, 60, .58);
  --book-modal-glow: rgba(150, 193, 237, .26);
  position: fixed;
  inset: 0;
  z-index: 1000;
  background:
    radial-gradient(circle at 18% 12%, var(--book-modal-glow), transparent 28rem),
    var(--book-modal-overlay);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.book-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.book-modal {
  position: relative;
  width: 94%;
  max-width: 1120px;
  max-height: 92vh;
  background: var(--book-modal-surface);
  border: 1px solid var(--book-modal-border);
  border-radius: 18px;
  box-shadow: 0 34px 90px color-mix(in srgb, var(--book-modal-primary-dark) 30%, transparent);
  display: flex;
  flex-direction: column;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.4s cubic-bezier(.16, 1, .3, 1);
  overflow: hidden;
}

.book-modal-overlay.active .book-modal {
  transform: translateY(0) scale(1);
}

.book-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--book-modal-border);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--book-modal-primary);
  transition: var(--transition);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--book-modal-primary-dark) 14%, transparent);
}

.book-modal-close:hover {
  background: var(--book-modal-primary);
  color: var(--clr-white);
  transform: rotate(90deg);
}

.book-modal-scroll {
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  flex: 1;
  padding: 1.75rem;
}

.book-modal-scroll::-webkit-scrollbar {
  width: 6px;
}

.book-modal-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.book-modal-scroll::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--book-modal-primary) 16%, transparent);
  border-radius: 10px;
}

.book-modal-layout {
  display: grid;
  grid-template-columns: minmax(320px, 390px) 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* Gallery */
.book-modal-gallery {
  position: sticky;
  top: 0;
  padding: 1rem 1rem 1.35rem;
  background: var(--clr-white);
  border: 1px solid var(--book-modal-border);
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .8) inset;
}

.book-modal-main-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .72), color-mix(in srgb, var(--book-modal-soft) 86%, transparent)),
    var(--book-modal-soft);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  position: relative;
  cursor: zoom-in;
}

.book-modal-main-image::after {
  content: '';
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid var(--book-modal-border);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--book-modal-primary-dark) 14%, transparent);
  opacity: 0;
  transform: translateY(4px);
  transition: var(--transition);
  pointer-events: none;
}

.book-modal-main-image:hover::after,
.book-modal-main-image:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.book-modal-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.book-modal-main-image img[src=""],
.book-modal-main-image img:not([src]) {
  opacity: 0;
}

.book-modal-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--book-modal-muted);
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.book-modal-img-placeholder span {
  font-size: 0.82rem;
  font-weight: 500;
}

.book-modal-main-image.has-image .book-modal-img-placeholder {
  opacity: 0;
}

.book-modal-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 0.85rem;
  overflow: visible;
  padding-bottom: 0;
}

.book-modal-thumbnails::-webkit-scrollbar {
  height: 4px;
}

.book-modal-thumbnails::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--book-modal-primary) 14%, transparent);
  border-radius: 10px;
}

.book-modal-thumb {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--book-modal-primary-dark) 14%, transparent);
  padding: 4px;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .85) inset, 0 8px 18px color-mix(in srgb, var(--book-modal-primary-dark) 7%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.book-modal-thumb::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 7px;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--book-modal-primary);
  box-shadow: 0 4px 10px color-mix(in srgb, var(--book-modal-primary-dark) 24%, transparent);
  opacity: 0;
  transform: translateX(-50%) scaleX(.55);
  transition: opacity var(--transition), transform var(--transition);
}

.book-modal-thumb:hover {
  border-color: color-mix(in srgb, var(--book-modal-primary-dark) 26%, transparent);
  background: rgba(255, 255, 255, .96);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .9) inset, 0 12px 26px color-mix(in srgb, var(--book-modal-primary-dark) 12%, transparent);
}

.book-modal-thumb.active {
  border-color: color-mix(in srgb, var(--book-modal-primary-dark) 46%, transparent);
  background: #FFFFFF;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .92) inset,
    0 14px 30px color-mix(in srgb, var(--book-modal-primary-dark) 18%, transparent);
  transform: translateY(-1px);
}

.book-modal-thumb.active::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.book-modal-thumb:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--book-modal-accent) 24%, transparent);
  outline-offset: 3px;
}

.book-modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.book-modal-thumb img[src=""],
.book-modal-thumb img:not([src]) {
  opacity: 0;
}

.book-modal-thumb-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--book-modal-muted);
  opacity: 0.3;
}

.book-modal-thumb-placeholder svg {
  width: 20px;
  height: 20px;
}

.book-modal-thumb.has-image .book-modal-thumb-placeholder {
  display: none;
}

.book-image-zoom {
  position: fixed;
  inset: 0;
  z-index: 1020;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: color-mix(in srgb, var(--book-modal-primary-dark) 78%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.book-image-zoom.active {
  opacity: 1;
  visibility: visible;
}

.book-image-zoom-frame {
  width: min(92vw, 920px);
  max-height: 90dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-image-zoom-frame img {
  max-width: 100%;
  max-height: 90dvh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .32);
}

.book-image-zoom-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--book-modal-border);
  background: rgba(255, 255, 255, .94);
  color: var(--book-modal-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 20, 44, .22);
  transition: var(--transition);
}

.book-image-zoom-close:hover {
  background: var(--book-modal-primary);
  color: var(--clr-white);
}

.book-image-zoom-nav {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid var(--book-modal-border);
  background: rgba(255, 255, 255, .92);
  color: var(--book-modal-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(0, 20, 44, .24);
  transform: translateY(-50%);
  transition: var(--transition);
}

.book-image-zoom-nav[hidden] {
  display: none;
}

.book-image-zoom-nav:hover {
  background: var(--book-modal-primary);
  color: var(--clr-white);
}

.book-image-zoom-prev {
  left: max(1rem, calc((100vw - 920px) / 2 - 5rem));
}

.book-image-zoom-next {
  right: max(1rem, calc((100vw - 920px) / 2 - 5rem));
}

/* Modal Info */
.book-modal-info {
  min-width: 0;
}

.book-modal-header {
  padding: 1.35rem 1.45rem;
  margin-bottom: 1rem;
  background: var(--clr-white);
  border: 1px solid var(--book-modal-border);
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .8) inset;
}

.book-modal-series {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--book-modal-primary);
  background: var(--book-modal-soft);
  border: 1px solid var(--book-modal-border);
  padding: 0.35rem 0.55rem;
  border-radius: 5px;
  margin-bottom: 0.75rem;
}

.book-modal-title {
  font-family: var(--ff-heading);
  font-size: 1.95rem;
  color: var(--book-modal-primary);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.book-modal-title .honorific {
  font-family: var(--ff-body);
  font-size: 0.86rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--book-modal-primary-dark) 56%, transparent);
  vertical-align: 0.16em;
  white-space: nowrap;
}

.book-modal-author {
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--book-modal-text);
  margin: 0 0.65rem 0 0;
}

.book-modal-publisher {
  display: inline-flex;
  font-size: 0.85rem;
  color: var(--book-modal-muted);
}

.book-modal-desc {
  padding: 1.1rem 1.25rem;
  background: var(--clr-white);
  border: 1px solid var(--book-modal-border);
  border-radius: 14px;
  font-size: 0.96rem;
  color: var(--book-modal-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.kt-audio {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  margin: 0 0 1rem;
  background: var(--clr-white);
  border: 1px solid #D3D1C7;
  border-radius: 14px;
}

.kt-audio[hidden] {
  display: none;
}

.kt-audio__btn {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #2C2C2A;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.12s ease, background 0.15s ease;
}

.kt-audio__btn:hover {
  background: #000000;
}

.kt-audio__btn:active {
  transform: scale(0.92);
}

.kt-audio__btn:focus-visible,
.kt-audio__wave:focus-visible {
  outline: 2px solid #2C2C2A;
  outline-offset: 3px;
}

.kt-audio__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 10px;
}

.kt-audio__label {
  font-size: 13px;
  font-weight: 700;
  color: #2C2C2A;
  line-height: 1.25;
}

.kt-audio__time {
  flex: 0 0 auto;
  font-size: 12px;
  color: #5F5E5A;
  font-variant-numeric: tabular-nums;
  line-height: 1.25;
}

.kt-audio__main {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.kt-audio__wave {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 2px;
  min-width: 0;
  height: 30px;
  cursor: pointer;
}

.kt-audio__wave .kt-bar {
  flex: 1 1 0;
  min-width: 2px;
  border-radius: 2px;
  background: #C7C5BD;
  transition: background 0.12s ease, height 0.12s ease;
}

.book-modal-pricing-panel {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 0.92rem;
}

.book-modal-price-cards {
  display: grid;
  gap: 0.48rem;
  padding: 0.62rem;
  border: 1px solid color-mix(in srgb, var(--book-modal-primary) 10%, var(--book-modal-border));
  border-radius: 14px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--book-modal-soft) 16%, white), #fffefd);
}

.book-modal-price-card[hidden] {
  display: none;
}

.book-modal-price-card {
  position: relative;
  min-width: 0;
}

.book-modal-price-card-featured {
  display: grid;
  gap: 0.3rem;
  padding: 0.92rem 1rem 0.95rem;
  border: 1px solid rgba(122, 145, 126, 0.24);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.96) 0%, rgba(249, 250, 242, 0.96) 58%, rgba(246, 250, 244, 0.96) 100%);
  box-shadow:
    0 10px 24px rgba(46, 83, 46, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.book-modal-price-card-single {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem 0.45rem;
  padding: 0.52rem 0.64rem;
  border: 1px solid color-mix(in srgb, var(--book-modal-primary) 10%, transparent);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--book-modal-muted);
}

.book-modal-price-title {
  color: var(--book-modal-primary);
  font-size: clamp(0.92rem, 1.4vw, 0.99rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-transform: uppercase;
}

.book-modal-price-card .price-old {
  width: fit-content;
  color: color-mix(in srgb, var(--book-modal-muted) 82%, #5C5363);
  font-size: 0.86rem;
  font-weight: 760;
  line-height: 1.1;
}

.book-modal-price-card .price-current {
  color: var(--book-modal-primary);
  font-size: clamp(1.34rem, 2vw, 1.54rem);
  line-height: 1;
}

.book-modal-set-compare {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  width: fit-content;
  color: color-mix(in srgb, var(--book-modal-muted) 88%, #5C5363);
  font-size: 0.95rem;
  font-weight: 760;
}

.book-modal-set-compare .price-old {
  font-size: inherit;
}

.book-modal-set-main-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  min-width: 0;
}

.book-modal-price-card-featured .price-current {
  color: #1F6B33;
  font-size: clamp(1.3rem, 2.15vw, 1.65rem);
  letter-spacing: 0;
}

.book-modal-price-card .price-note {
  margin: 0;
  color: #2D6B3D;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.25;
}

.book-modal-price-card-featured .price-note {
  width: fit-content;
  max-width: 100%;
  padding: 0.34rem 0.58rem;
  border: 1px solid rgba(46, 125, 50, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  line-height: 1.2;
}

.book-modal-set-choice {
  margin: 0.12rem 0 0;
  color: color-mix(in srgb, var(--book-modal-muted) 82%, #2D6B3D);
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.35;
}

.book-modal-single-label {
  color: color-mix(in srgb, var(--book-modal-muted) 88%, var(--book-modal-primary));
  font-size: 0.82rem;
  font-weight: 850;
}

.book-modal-single-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.26rem;
  color: color-mix(in srgb, var(--book-modal-muted) 86%, var(--book-modal-primary));
  font-size: 0.82rem;
  font-weight: 760;
}

.book-modal-price-card-single .price-old {
  font-size: 0.82rem;
}

.book-modal-price-card-single .price-current {
  color: var(--book-modal-primary);
  font-size: 1.08rem;
}

.set-book-pricing-modal .book-modal-pricing-panel {
  gap: 0.5rem;
  margin-bottom: 0.92rem;
}

.set-book-pricing-modal .book-modal-price-cards {
  gap: 0.48rem;
  padding: 0.62rem;
  border: 1px solid rgba(171, 211, 220, 0.86);
  border-radius: 14px;
  background: #FFFFFF;
  box-shadow: none;
}

.set-book-pricing-modal .book-modal-price-card-single,
.set-book-pricing-modal .book-modal-price-card-featured {
  border: 1px solid rgba(171, 211, 220, 0.86);
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: none;
}

.set-book-pricing-modal .book-modal-price-card-single {
  align-items: baseline;
  gap: 0.3rem 0.45rem;
  padding: 0.52rem 0.64rem;
  color: #173246;
}

.set-book-pricing-modal .book-modal-single-label,
.set-book-pricing-modal .book-modal-single-price {
  color: #173246;
  font-size: 0.82rem;
  line-height: 1.2;
}

.set-book-pricing-modal .book-modal-single-label {
  font-weight: 900;
}

.set-book-pricing-modal .book-modal-single-price {
  gap: 0.26rem;
  font-weight: 800;
}

.set-book-pricing-modal .book-modal-price-card-single .price-old {
  font-size: inherit;
}

.set-book-pricing-modal .book-modal-price-card-single .price-current {
  color: #173246;
  font-size: 1.08rem;
  font-weight: 900;
}

.set-book-pricing-modal .book-modal-price-card-featured {
  gap: 0.3rem;
  padding: 0.92rem 1rem 0.95rem;
}

.set-book-pricing-modal .book-modal-price-title {
  color: #173246;
  font-size: clamp(0.92rem, 1.4vw, 0.99rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-transform: uppercase;
}

.set-book-pricing-modal .book-modal-set-compare {
  color: #586474;
  font-size: 0.95rem;
  font-weight: 850;
}

.set-book-pricing-modal .book-modal-set-compare .price-old {
  color: inherit;
  font-size: inherit;
}

.set-book-pricing-modal .book-modal-set-main-row {
  gap: 0.5rem 0.75rem;
}

.set-book-pricing-modal .book-modal-price-card-featured .price-current {
  color: #2F7B3E;
  font-size: clamp(1.3rem, 2.15vw, 1.65rem);
  font-weight: 900;
  letter-spacing: 0;
}

.set-book-pricing-modal .book-modal-price-card-featured .price-note {
  padding: 0.34rem 0.58rem;
  border: 0;
  border-radius: 999px;
  background: #2F7B3E;
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.2;
  box-shadow: 0 8px 18px rgba(47, 123, 62, 0.16);
}

.set-book-pricing-modal .book-modal-set-choice {
  margin-top: 0.12rem;
  color: #526B74;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.35;
}

.set-book-pricing-modal .book-modal-offer-band {
  gap: 0.5rem;
}

.set-book-pricing-modal .book-modal-offer-band-item {
  min-height: 34px;
  padding: 0.4rem 0.58rem;
  border-radius: 12px;
  background: #FFFFFF;
  font-size: 0.76rem;
  font-weight: 820;
  box-shadow: none;
}

.set-book-pricing-modal .book-modal-offer-band-shipping {
  border-color: rgba(47, 123, 62, 0.16);
  color: #2F7B3E;
}

.set-book-pricing-modal .book-modal-offer-band-payment {
  border-color: rgba(171, 211, 220, 0.72);
  color: #173246;
}

.set-book-pricing-modal .book-modal-offer-band-item svg {
  flex-basis: 17px;
  width: 17px;
  height: 17px;
}

.set-book-pricing-modal .book-modal-wa-btn {
  min-height: auto;
  margin: 0.1rem 0 1.1rem;
  padding: 0.9rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 800;
}

@media (max-width: 640px) {
  .set-book-pricing-modal .book-modal-price-cards {
    gap: 0.48rem;
    padding: 0.62rem;
    border-radius: 14px;
  }

  .set-book-pricing-modal .book-modal-price-card-single,
  .set-book-pricing-modal .book-modal-price-card-featured {
    border-radius: 12px;
  }

  .set-book-pricing-modal .book-modal-price-card-single {
    align-items: baseline;
    flex-direction: row;
    padding: 0.52rem 0.64rem;
  }

  .set-book-pricing-modal .book-modal-price-card-featured {
    padding: 0.92rem 1rem 0.95rem;
  }

  .set-book-pricing-modal .book-modal-set-main-row {
    flex-direction: row;
    align-items: center;
  }

  .set-book-pricing-modal .book-modal-offer-band {
    gap: 0.5rem;
  }

  .set-book-pricing-modal .book-modal-offer-band-item {
    min-height: 34px;
    justify-content: flex-start;
    padding: 0.4rem 0.58rem;
    text-align: left;
  }

  .set-book-pricing-modal .book-modal-offer-band-item svg {
    flex-basis: 17px;
    width: 17px;
    height: 17px;
  }

  .set-book-pricing-modal .book-modal-wa-btn {
    min-height: auto;
  }
}

.book-modal-offer-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 0.5rem;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--book-modal-muted);
}

.book-modal-offer-band-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.34rem;
  min-width: 0;
  min-height: 34px;
  padding: 0.4rem 0.58rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
  color: color-mix(in srgb, var(--book-modal-muted) 88%, var(--book-modal-primary));
  font-size: 0.76rem;
  font-weight: 820;
  line-height: 1.25;
  text-align: center;
}

.book-modal-offer-band-shipping {
  border: 1px solid rgba(46, 125, 50, 0.14);
  color: #2e7d32;
  font-weight: 900;
}

.book-modal-offer-band-payment {
  border: 1px solid color-mix(in srgb, var(--book-modal-primary) 10%, transparent);
  color: color-mix(in srgb, var(--book-modal-muted) 82%, var(--book-modal-primary));
}

.book-modal-offer-band-item svg {
  stroke: currentColor;
  flex: 0 0 17px;
}

.book-modal-wa-btn {
  width: 100%;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  font-size: 0.95rem;
  border-radius: 999px;
  margin: 0.1rem 0 1.1rem;
  box-shadow: 0 10px 22px rgba(41, 167, 26, 0.16);
}

/* Modal Sections */
.book-modal-section {
  padding: 1.15rem 1.25rem 1.25rem;
  background: var(--clr-white);
  border: 1px solid var(--book-modal-border);
  border-radius: 14px;
  margin-bottom: 1rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .8) inset;
}

.book-modal-section-title {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  color: var(--book-modal-primary);
  margin-bottom: 0.85rem;
  font-weight: 600;
}

/* Meta Grid (Kitap Künyesi) */
.book-modal-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.book-modal-meta-item {
  display: flex;
  flex-direction: column;
  padding: 0.72rem 0.85rem;
  background: var(--book-modal-surface);
  border: 1px solid var(--book-modal-border);
  border-radius: 10px;
}

.book-modal-meta-item:nth-child(odd) {
  border-right: 1px solid var(--book-modal-border);
}

.book-modal-meta-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--book-modal-muted);
  margin-bottom: 0.2rem;
}

.book-modal-meta-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--book-modal-text);
}

/* Print Badges (Modal) */
.book-modal-print-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 0.42rem;
  max-width: 100%;
}

.book-modal-print-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.35rem;
  min-height: 38px;
  padding: 0.3rem 0.5rem;
  background: var(--book-modal-surface);
  border: 1px solid var(--book-modal-border);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--book-modal-primary);
  transition: var(--transition);
}

.book-modal-print-pill:hover {
  border-color: var(--book-modal-accent);
  background: color-mix(in srgb, var(--book-modal-accent) 7%, white);
}

.book-modal-print-pill .pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--book-modal-accent);
  flex-shrink: 0;
}

/* About Text */
.book-modal-about {
  font-size: 0.92rem;
  color: var(--book-modal-muted);
  line-height: 1.75;
}

/* Benefits */
.book-modal-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.book-modal-benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  background: var(--book-modal-surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--book-modal-border);
  transition: var(--transition);
}

.book-modal-benefit-card:hover {
  border-color: var(--book-modal-accent);
  background: color-mix(in srgb, var(--book-modal-accent) 6%, white);
}

.book-modal-benefit-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--book-modal-border);
}

.book-modal-benefit-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--book-modal-accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.book-modal-benefit-text {
  font-size: 0.82rem;
  color: var(--book-modal-text);
  line-height: 1.5;
  font-weight: 500;
}

/* Pages Grid */
.book-modal-pages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.book-modal-page-img {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--book-modal-soft);
  border: 1px solid var(--book-modal-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.book-modal-page-img:hover {
  border-color: var(--book-modal-accent);
  box-shadow: var(--shadow-sm);
}

.book-modal-page-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-modal-page-img img[src=""],
.book-modal-page-img img:not([src]) {
  opacity: 0;
}

.book-modal-page-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--book-modal-muted);
  opacity: 0.35;
}

.book-modal-page-placeholder svg {
  width: 24px;
  height: 24px;
}

.book-modal-page-placeholder span {
  font-size: 0.7rem;
  font-weight: 500;
}

.book-modal-page-img.has-image .book-modal-page-placeholder {
  display: none;
}

/* Reviews */
.book-modal-reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.book-modal-review-card {
  padding: 1rem 1.25rem;
  background: var(--book-modal-soft);
  border-radius: var(--radius-sm);
  border: 1px solid var(--book-modal-border);
  position: relative;
}

.book-modal-review-card::before {
  content: '"';
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--book-modal-accent);
  opacity: 0.3;
  position: absolute;
  top: 0.4rem;
  left: 0.85rem;
}

.book-modal-review-text {
  font-size: 0.88rem;
  color: var(--book-modal-text);
  line-height: 1.6;
  font-style: italic;
  padding-left: 1.25rem;
}

.book-modal-review-author {
  font-size: 0.75rem;
  color: var(--book-modal-muted);
  margin-top: 0.5rem;
  padding-left: 1.25rem;
  font-weight: 600;
}

/* Review Gallery */
.book-modal-review-gallery {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 4px;
}

.book-modal-review-img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--book-modal-soft);
  border: 1px solid var(--book-modal-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.book-modal-review-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-modal-review-img img[src=""],
.book-modal-review-img img:not([src]) {
  opacity: 0;
}

.book-modal-review-img-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--book-modal-muted);
  opacity: 0.3;
}

.book-modal-review-img-ph svg {
  width: 20px;
  height: 20px;
}

.book-modal-review-img.has-image .book-modal-review-img-ph {
  display: none;
}

/* CTA */
.book-modal-cta {
  padding: 1.55rem;
  background:
    linear-gradient(135deg, var(--book-modal-primary-dark), var(--book-modal-primary));
  border: 1px solid color-mix(in srgb, var(--book-modal-border) 52%, transparent);
  border-radius: 14px;
  color: var(--clr-white);
  text-align: center;
  margin-top: 0.25rem;
}

.book-modal-cta h3 {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  color: var(--clr-white);
  margin-bottom: 0.5rem;
}

.book-modal-cta p {
  font-size: 0.88rem;
  opacity: 0.8;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.book-modal-cta-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.book-modal-cta-buttons .btn-whatsapp {
  border-radius: 8px;
}

.book-modal-cta-buttons .btn-outline {
  background: var(--clr-white);
  border-color: var(--clr-white);
  color: var(--book-modal-primary);
  border-radius: 8px;
}

.book-modal-cta-buttons .btn-outline:hover {
  background: var(--book-modal-soft);
  border-color: var(--book-modal-soft);
  color: var(--book-modal-primary);
}

/* ===== Modal Mobile Responsive ===== */
@media (max-width: 768px) {
  .book-modal-overlay {
    align-items: flex-end;
    overflow: hidden;
  }

  .book-modal {
    width: 100dvw;
    max-width: 100dvw;
    height: min(94dvh, calc(100dvh - env(safe-area-inset-top, 0px) - 8px));
    max-height: min(94dvh, calc(100dvh - env(safe-area-inset-top, 0px) - 8px));
    border-right: 0;
    border-left: 0;
    border-bottom: 0;
    border-radius: 18px 18px 0 0;
    align-self: flex-end;
    transform: translateY(100%);
  }

  .book-modal-overlay.active .book-modal {
    transform: translateY(0);
  }

  .book-modal-scroll {
    width: 100%;
    max-width: 100%;
    padding: 0.85rem 0.85rem calc(1rem + env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
  }

  .book-modal-layout {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .book-modal-gallery {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    position: static;
    padding: 0.65rem;
    border-radius: 14px;
  }

  .book-modal-main-image {
    width: min(100%, 360px);
    max-width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    max-height: none;
    margin: 0 auto;
  }

  .book-modal-main-image::after {
    display: none;
  }

  .book-modal-main-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .book-modal-thumbnails {
    display: flex;
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
    gap: 0.5rem;
    margin-top: 0.65rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }

  .book-modal-thumb {
    width: 60px;
    aspect-ratio: 4 / 5;
    height: auto;
    scroll-snap-align: start;
  }

  .book-modal-info,
  .book-modal-header,
  .book-modal-desc,
  .book-modal-section,
  .book-modal-cta {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .book-modal-header {
    padding: 1rem;
    border-radius: 14px;
  }

  .book-modal-title {
    font-size: 1.55rem;
  }

  .book-modal-author,
  .book-modal-publisher {
    display: block;
    margin-right: 0;
  }

  .book-modal-price-cards {
    grid-template-columns: 1fr;
  }

  .book-modal-offer-band {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .book-modal-offer-band-item {
    justify-content: flex-start;
    text-align: left;
  }

  .book-modal-desc {
    padding: 0.95rem 1rem;
    font-size: 0.92rem;
  }

  .kt-audio {
    padding: 12px;
    border-radius: 12px;
  }

  .kt-audio__btn {
    width: 42px;
    height: 42px;
  }

  .kt-audio__top {
    gap: 0.55rem;
  }

  .kt-audio__main {
    gap: 12px;
  }

  .kt-audio__wave {
    gap: 2px;
  }

  .book-modal-section {
    padding: 1rem;
  }

  .book-modal-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .book-modal-meta-item {
    min-width: 0;
    padding: 0.68rem 0.72rem;
    overflow: hidden;
  }

  .book-modal-meta-item:nth-child(odd) {
    border-right: none;
  }

  .book-modal-meta-value {
    font-size: 0.76rem;
    line-height: 1.35;
    overflow-wrap: normal;
    word-break: normal;
    white-space: nowrap;
  }

  .book-modal-meta-label {
    font-size: 0.62rem;
  }

  .book-modal-benefits {
    grid-template-columns: 1fr;
  }

  .book-modal-pages-grid {
    grid-template-columns: 1fr 1fr;
  }

  .book-modal-cta {
    padding: 1.15rem;
  }

  .book-modal-cta-buttons {
    flex-direction: column;
  }

  .book-modal-cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .book-modal-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .book-image-zoom {
    padding: 1rem;
  }

  .book-image-zoom-frame,
  .book-image-zoom-frame img {
    max-height: 86dvh;
  }

  .book-image-zoom-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 40px;
    height: 40px;
  }

  .book-image-zoom-nav {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .book-image-zoom-prev {
    left: 0.75rem;
  }

  .book-image-zoom-next {
    right: 0.75rem;
  }
}

/* Body scroll lock when modal is open */
body.modal-open {
  overflow: hidden;
}
/* ===== Hero Eyebrow ===== */
.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-accent);
  background: rgba(30, 115, 232, .08);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

/* ===== Audience Detail Cards ===== */
.audience-grid-detailed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.audience-detail-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
}

.audience-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.audience-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(30, 115, 232, .08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.audience-detail-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--clr-accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-detail-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.audience-detail-card p {
  font-size: 0.95rem;
  color: var(--clr-muted);
  line-height: 1.5;
}

/* ===== Benefits Numbered Cards ===== */
.benefits-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.benefit-num-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
}

.benefit-num-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.benefit-num {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-accent);
  opacity: 0.3;
  margin-bottom: 0.75rem;
}

.benefit-num-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.benefit-num-card p {
  font-size: 0.99rem;
  color: var(--clr-muted);
  line-height: 1.6;
}

/* ===== Neden Text Block ===== */
.neden-text {
  max-width: 680px;
  margin: 0 auto;
}

.neden-text p {
  font-size: 1.02rem;
  color: var(--clr-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ===== Neden Flow Cards ===== */
.neden-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  width: 100%;
  margin: 2.4rem auto 0;
  text-align: left;
}

.neden-flow-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 1.35rem 1.5rem 1.35rem 1.75rem;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(0, 46, 102, .12);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(0, 46, 102, .07);
  transition: var(--transition);
}

.neden-flow-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.neden-flow-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-soft));
  opacity: .86;
}

.neden-flow-step {
  display: block;
  margin-bottom: 0.55rem;
  font-family: var(--ff-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--clr-accent);
  letter-spacing: 0;
}

.neden-flow-card p {
  margin: 0;
  color: var(--clr-text);
  font-size: 1.02rem;
  line-height: 1.72;
}

/* ===== Book Card Subtitle ===== */
.book-card-ebubekir {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.55rem;
  padding: 0.24rem 0.55rem;
  border: 1px solid rgba(72, 20, 82, 0.5);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--clr-ebubekir);
  font-size: 0.60rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.book-card-omer {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.55rem;
  padding: 0.24rem 0.55rem;
  border: 1px solid rgba(85, 44, 03, 0.5);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--clr-omer);
  font-size: 0.60rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.book-card-osman {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.55rem;
  padding: 0.24rem 0.55rem;
  border: 1px solid rgba(0, 55, 135, 0.5);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--clr-osman);
  font-size: 0.60rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.book-card-ali {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.55rem;
  padding: 0.24rem 0.55rem;
  border: 1px solid rgba(171, 6, 0, 0.5);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--clr-ali);
  font-size: 0.60rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}


.book-card-amine {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.55rem;
  padding: 0.24rem 0.55rem;
   border: 1px solid rgba(63, 143, 47, 0.55);
  border-radius: 5px;
  background: rgba(63, 143, 47, 0.03);
  color: var(--clr-amine);
  font-size: 0.60rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.book-card-hatice {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.55rem;
  padding: 0.24rem 0.55rem;
   border: 1px solid rgba(139, 31, 82, 0.55);
  border-radius: 5px;
  background: rgba(139, 31, 82, 0.03);
  color: var(--clr-hatice);
  font-size: 0.60rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.book-card-fatima {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.55rem;
  padding: 0.24rem 0.55rem;
  border: 1px solid rgba(200, 16, 46, 0.55);
  border-radius: 5px;
  background: rgba(200, 16, 46, 0.03);
  color: var(--clr-fatima);
  font-size: 0.60rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.book-card-aise {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.55rem;
  padding: 0.24rem 0.55rem;
  border: 1px solid rgba(212, 20, 142, 0.55);
  border-radius: 5px;
   background: rgba(212, 20, 142, 0.03);
  color: var(--clr-aise);
  font-size: 0.60rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}


.book-card-subtitle {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--clr-accent);
  margin-bottom: 0;
  letter-spacing: 0.01em;
}

.dort-halife-books .book-card-subtitle {
  padding-bottom: 0;
  border-bottom: 0;
}

.dort-halife-books .book-card-body p {
  padding-top: 0;
  border-top: 0;
}

:is(.mubarek-women-books, .prophets-history-books) .book-card-body p {
  padding-top: 0;
  border-top: 0;
}

/* ===== Lead Form Note ===== */
.lead-form-note {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 1.5rem;
}

.lead-trust-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, .5);
  margin-top: 1rem;
}

/* ===== Sticky WhatsApp Bar (Mobile Only) ===== */
.sticky-wa-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--clr-white);
  border-top: 1px solid var(--clr-border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .08);
  padding: 0.65rem 1rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.sticky-wa-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.sticky-wa-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--clr-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-wa-sub {
  font-size: 0.68rem;
  color: var(--clr-muted);
}

.sticky-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1.1rem;
  background: var(--clr-whatsapp);
  color: var(--clr-white) !important;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
}

.sticky-wa-btn:hover {
  background: var(--clr-whatsapp-hover);
}

/* ===== Set Card Reveal Stagger (added to .set-card) ===== */
.set-card { position: relative; }

/* ===== Responsive additions ===== */
@media (max-width: 768px) {
  .sticky-wa-bar {
    display: flex;
  }

  body {
    padding-bottom: 56px;
  }

  .audience-grid-detailed {
    grid-template-columns: 1fr;
  }

  .benefits-cards-grid {
    grid-template-columns: 1fr;
  }

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

  .neden-flow {
    max-width: 100%;
    margin-top: 2rem;
    grid-template-columns: 1fr;
  }

  .neden-flow-card {
    padding: 1.2rem 1.15rem 1.2rem 1.25rem;
  }

  .neden-flow::before {
    display: none;
  }

  .hero-badges {
    gap: 0.4rem;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 0.3rem 0.7rem;
  }
}

@media (max-width: 480px) {
  .books-grid {
    grid-template-columns: 1fr;
  }

  .neden-flow-card p {
    font-size: 0.98rem;
  }
}

/* ===== prefers-reduced-motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===== Professional Editorial Refresh ===== */
:root {
  --clr-bg: #F3F8FD;
  --clr-bg-alt: #FBFDFF;
  --clr-primary: #002E66;
  --clr-accent: #085BBF;
  --clr-accent-soft: #96C1ED;
  --clr-text: #183047;
  --clr-card: #FFFFFF;
  --clr-border: #C6DFF4;
  --clr-muted: #68717A;
  --clr-whatsapp: #21884C;
  --clr-whatsapp-hover: #176E3B;
  --radius: 8px;
  --radius-sm: 6px;
  --shadow-sm: 0 8px 24px rgba(0, 46, 102, .08);
  --shadow-md: 0 18px 46px rgba(0, 46, 102, .12);
  --shadow-lg: 0 28px 70px rgba(0, 46, 102, .18);
  --transition: 0.24s ease;
}

body {
  background:
    radial-gradient(circle at 8% 0%, rgba(8, 91, 191, .10), transparent 28rem),
    linear-gradient(180deg, #F8FCFF 0%, var(--clr-bg) 45%, #E8F3FD 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .32;
  background-image:
    linear-gradient(rgba(0, 46, 102, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 46, 102, .025) 1px, transparent 1px);
  background-size: 42px 42px;
}

::selection {
  background: rgba(8, 91, 191, .18);
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  font-size: 4.35rem;
  line-height: .98;
  max-width: 820px;
}

h2 {
  font-size: 2.65rem;
  line-height: 1.08;
}

.section {
  padding: 6.5rem 0;
}

section[id] {
  scroll-margin-top: 140px;
}

.section-subtitle {
  max-width: 720px;
  font-size: 1.08rem;
}

.btn {
  min-height: 46px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}

.btn-primary {
  background: var(--clr-primary);
}

.btn-primary:hover {
  background: #214566;
}

.btn-outline {
  background: rgba(255, 255, 255, .74);
  border-color: rgba(0, 46, 102, .34);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--clr-primary);
}

.header {
  background: rgba(251, 253, 255, .86);
  border-bottom-color: rgba(0, 46, 102, .12);
}

.header .container {
  height: 76px;
}

.brand-logo {
  width: 128px;
  height: 128px;
  padding: 12px;
  border: 1px solid rgba(0, 46, 102, .10);
  border-top: 0;
  box-shadow: 0 14px 34px rgba(0, 46, 102, .14);
}

.nav-list {
  gap: 1.35rem;
}

.nav-list a {
  font-size: .84rem;
}

.nav-list > li > a:not(.btn) {
  position: relative;
}

.nav-list > li > a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--clr-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-list > li > a:not(.btn):hover::after {
  transform: scaleX(1);
}

.dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 24px 58px rgba(0, 46, 102, .18);
}

@media (min-width: 769px) {
  .header {
    background: rgba(251, 253, 255, .88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0, 46, 102, .10);
    box-shadow: 0 10px 34px rgba(9, 32, 62, .06);
  }

  .header .container {
    height: 74px;
  }

  .brand {
    align-items: flex-start;
  }

  .brand-logo {
    width: 106px;
    height: 106px;
    padding: 10px;
    border-radius: 0 0 14px 14px;
    border: 1px solid rgba(0, 46, 102, .10);
    border-top: 0;
    box-shadow: 0 14px 30px rgba(0, 46, 102, .13);
  }

  .nav-list {
    gap: .55rem;
    min-height: 74px;
  }

  .nav-list > li {
    display: flex;
    align-items: center;
  }

  .nav-list > .mobile-menu-head,
  .nav-list > .mobile-menu-cta {
    display: none;
  }

  .nav-link {
    position: relative;
    align-items: center;
    min-height: 44px;
    padding: .55rem .55rem;
    border-radius: 6px;
    color: #17324C;
  }

  .nav-list a {
    font-size: .87rem;
    font-weight: 760;
  }

  .nav-list > li > a:not(.btn)::after {
    left: .55rem;
    right: .55rem;
    bottom: .28rem;
    height: 2px;
    border-radius: 999px;
    background: var(--clr-accent);
  }

  .nav-list > li > a:not(.btn):hover,
  .nav-list > li > a:not(.btn):focus-visible,
  .nav-list > li > a:not(.btn).is-active {
    color: var(--clr-accent);
    background: transparent;
  }

  .nav-list > li > a:not(.btn).is-active::after {
    transform: scaleX(1);
  }

  .dropdown-toggle.nav-link {
    display: inline-flex;
    gap: .34rem;
  }

  .dropdown-arrow {
    display: inline-grid;
    place-items: center;
    width: 16px;
    height: 16px;
    margin-left: .05rem;
    color: var(--clr-primary);
    font-size: .76rem;
    transition: transform .22s ease;
  }

  .dropdown:hover .dropdown-arrow,
  .dropdown:focus-within .dropdown-arrow {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    display: block;
    top: calc(100% + 10px);
    left: 50%;
    width: 460px;
    min-width: 460px;
    padding: 0;
    border-radius: 16px;
    border: 1px solid rgba(0, 46, 102, .08);
    background: var(--clr-white);
    box-shadow: 0 22px 52px rgba(9, 32, 62, .16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }

  .dropdown-menu::before {
    top: -16px;
    left: 0;
    height: 16px;
  }

  .dropdown-menu::after {
    content: '';
    position: absolute;
    top: -6px;
    left: calc(50% - 7px);
    width: 14px;
    height: 14px;
    background: var(--clr-white);
    border-left: 1px solid rgba(0, 46, 102, .08);
    border-top: 1px solid rgba(0, 46, 102, .08);
    transform: rotate(45deg);
  }

  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
    animation: none;
  }

  .desktop-nav-cta {
    margin-left: .3rem;
  }

  .desktop-nav-cta .btn-whatsapp {
    position: relative;
    min-height: 46px;
    padding: .72rem 1.28rem .72rem 1.08rem;
    border-radius: 10px;
    background: linear-gradient(180deg, #2FA85A 0%, #178848 100%);
    color: #FFFFFF;
    box-shadow: 0 12px 26px rgba(23, 136, 72, .24), inset 0 1px 0 rgba(255, 255, 255, .24);
  }

  .desktop-nav-cta .btn-whatsapp::before {
    content: '';
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.47 14.38c-.3-.15-1.76-.87-2.03-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.94 1.16-.17.2-.35.22-.64.08-.3-.15-1.26-.46-2.39-1.48-.88-.79-1.48-1.76-1.65-2.06-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.03-.52-.07-.15-.67-1.61-.92-2.21-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.07-.79.37-.27.3-1.04 1.02-1.04 2.48 0 1.46 1.06 2.88 1.21 3.07.15.2 2.1 3.2 5.08 4.49.71.31 1.26.49 1.69.63.71.23 1.36.2 1.87.12.57-.09 1.76-.72 2.01-1.41.25-.69.25-1.29.17-1.41-.07-.12-.27-.2-.57-.35zM12.05 21.79h-.01a9.87 9.87 0 0 1-5.03-1.38l-.36-.21-3.74.98 1-3.65-.24-.37a9.86 9.86 0 0 1-1.51-5.26C2.16 6.45 6.6 2.01 12.05 2.01c2.64 0 5.12 1.03 6.99 2.9a9.83 9.83 0 0 1 2.89 6.99c0 5.45-4.44 9.89-9.88 9.89zM20.46 3.49A11.82 11.82 0 0 0 12.05 0C5.5 0 .16 5.34.16 11.89c0 2.1.55 4.14 1.59 5.95L.06 24l6.31-1.65a11.88 11.88 0 0 0 5.68 1.45h.01c6.55 0 11.89-5.34 11.89-11.89 0-3.18-1.24-6.16-3.48-8.41z'/%3E%3C/svg%3E") center / contain no-repeat;
            mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.47 14.38c-.3-.15-1.76-.87-2.03-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.94 1.16-.17.2-.35.22-.64.08-.3-.15-1.26-.46-2.39-1.48-.88-.79-1.48-1.76-1.65-2.06-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.03-.52-.07-.15-.67-1.61-.92-2.21-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.07-.79.37-.27.3-1.04 1.02-1.04 2.48 0 1.46 1.06 2.88 1.21 3.07.15.2 2.1 3.2 5.08 4.49.71.31 1.26.49 1.69.63.71.23 1.36.2 1.87.12.57-.09 1.76-.72 2.01-1.41.25-.69.25-1.29.17-1.41-.07-.12-.27-.2-.57-.35zM12.05 21.79h-.01a9.87 9.87 0 0 1-5.03-1.38l-.36-.21-3.74.98 1-3.65-.24-.37a9.86 9.86 0 0 1-1.51-5.26C2.16 6.45 6.6 2.01 12.05 2.01c2.64 0 5.12 1.03 6.99 2.9a9.83 9.83 0 0 1 2.89 6.99c0 5.45-4.44 9.89-9.88 9.89zM20.46 3.49A11.82 11.82 0 0 0 12.05 0C5.5 0 .16 5.34.16 11.89c0 2.1.55 4.14 1.59 5.95L.06 24l6.31-1.65a11.88 11.88 0 0 0 5.68 1.45h.01c6.55 0 11.89-5.34 11.89-11.89 0-3.18-1.24-6.16-3.48-8.41z'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .desktop-nav-cta .btn-whatsapp:hover,
  .desktop-nav-cta .btn-whatsapp:focus-visible {
    background: linear-gradient(180deg, #35B963 0%, #148142 100%);
    box-shadow: 0 16px 34px rgba(23, 136, 72, .32), inset 0 1px 0 rgba(255, 255, 255, .28);
  }
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 76px));
  padding: 7rem 0 4.8rem;
  isolation: isolate;
  overflow: hidden;
  background: #002E66;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 46, 102, .96) 0%, rgba(0, 46, 102, .86) 42%, rgba(0, 46, 102, .44) 68%, rgba(0, 46, 102, .18) 100%),
    radial-gradient(circle at 14% 18%, rgba(150, 193, 237, .20), transparent 22rem);
}

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(150, 193, 237, .72), transparent);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: block;
}

.hero-content {
  max-width: 760px;
  color: rgba(255, 255, 255, .86);
}

.hero-title,
.hero h1,
.hero h2,
.hero h3 {
  color: #FFFFFF;
}

.hero-title {
  margin-bottom: 1.45rem;
}

.hero-text {
  max-width: 680px;
  color: rgba(255, 255, 255, .78);
  font-size: 1.18rem;
  line-height: 1.72;
}

.hero-eyebrow {
  color: #D9ECFF;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(150, 193, 237, .38);
  border-radius: 999px;
}

.hero-buttons {
  gap: .9rem;
}

.hero .btn-outline {
  color: #F5FAFF;
  border-color: rgba(255, 255, 255, .46);
  background: rgba(255, 255, 255, .08);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, .16);
}

.hero-badges {
  max-width: 680px;
}

.hero-badge {
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
  backdrop-filter: blur(8px);
}

.hero-badge svg {
  stroke: var(--clr-accent-soft);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  background: #002E66;
  box-shadow: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  opacity: .82;
  filter: saturate(1.02) contrast(1.04);
}

.sets-grid {
  gap: 2rem;
}

.set-card,
.feature-card,
.audience-detail-card,
.benefit-num-card,
.book-card,
.accordion-item,
.print-badge {
  border-color: rgba(0, 46, 102, .10);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .7) inset;
}

.set-card,
.book-card {
  border-color: rgba(10, 59, 122, .24);
}

#setler .set-card {
  border-color: #C6DFF4;
}

#kitaplar .book-card {
  border-color: #C6DFF4;
}

.set-card {
  border-radius: 10px;
  background: var(--clr-white);
}

.set-card:hover,
.feature-card:hover,
.audience-detail-card:hover,
.benefit-num-card:hover,
.book-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.set-card-image,
.book-card-image {
  background: #EAF4FC;
}

.set-card-image img,
.book-card-image img {
  transition: transform .5s ease;
}

.set-card:hover .set-card-image img,
.book-card:hover .book-card-image img {
  transform: scale(1.035);
}

.book-card-reveal {
  opacity: 0;
  transform: translateY(34px) scale(.96);
  transition:
    opacity .65s ease,
    transform .65s cubic-bezier(.22, 1, .36, 1),
    box-shadow var(--transition),
    border-color var(--transition);
  will-change: opacity, transform;
}

.book-card-reveal .book-card-image img {
  transform: scale(1.035);
  transition: transform .75s cubic-bezier(.22, 1, .36, 1);
}

.book-card-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.book-card-reveal.is-visible .book-card-image img {
  transform: scale(1);
}

.book-card-reveal.is-visible:hover {
  transform: translateY(-6px);
}

.book-card-reveal.is-visible:hover .book-card-image img {
  transform: scale(1.035);
}

.prophets-books .book-card-reveal {
  transform: translateY(18px) scale(.985);
  transition:
    opacity .42s ease,
    transform .42s cubic-bezier(.22, 1, .36, 1),
    box-shadow var(--transition),
    border-color var(--transition);
}

.prophets-books .book-card-reveal .book-card-image img {
  transition: transform .5s cubic-bezier(.22, 1, .36, 1);
}

.prophets-books .book-card-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.prophets-books .book-card-reveal.is-visible:hover {
  transform: translateY(-6px);
}

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

  .book-card-reveal .book-card-image img {
    transform: none;
  }
}

@media (max-width: 860px) {
  .book-card-reveal {
    transform: translateY(28px) scale(.98);
  }

  .prophets-books .book-card-reveal {
    transform: translateY(16px) scale(.99);
  }
}

.set-card-body {
  padding: 1.65rem;
}

.set-card-meta,
.book-card-subtitle {
  color: var(--clr-accent);
}

.tag,
.hero-badge,
.book-modal-print-pill {
  letter-spacing: 0;
}

.features-grid,
.benefits-cards-grid {
  gap: 1.5rem;
}

.feature-card,
.audience-detail-card,
.benefit-num-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.feature-card::before,
.audience-detail-card::before,
.benefit-num-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-soft));
  opacity: .86;
}

.feature-icon,
.audience-detail-icon,
.print-badge-icon {
  background: #f0f7ff;
}

.feature-icon svg,
.audience-detail-icon svg,
.print-badge-icon svg,
.audience-card svg {
  stroke: var(--clr-accent);
}

.lead-section,
.footer {
  position: relative;
  overflow: hidden;
}

.lead-section {
  background:
    linear-gradient(135deg, #00234D 0%, #002E66 58%, #085BBF 100%);
}

.footer {
  background:
    linear-gradient(90deg, rgba(0, 24, 52, .10), rgba(0, 38, 78, .10)),
    url("assets/images/footer.jpg") center bottom / cover no-repeat;
}

.lead-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 38px 38px;
}

.lead-section .container,
.footer .container {
  position: relative;
}

.lead-form {
  max-width: 560px;
}

.lead-form input,
.lead-form select {
  min-height: 50px;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .22);
}

.cta-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(243, 248, 253, .94)),
    radial-gradient(circle at 50% 0%, rgba(8, 91, 191, .13), transparent 28rem);
}

.footer-grid {
  gap: 3rem;
}

.sticky-wa-bar {
  background: rgba(255, 254, 251, .94);
  backdrop-filter: blur(14px);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(8, 91, 191, .34);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero {
    min-height: auto;
    padding: 5rem 0 4rem;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(0, 46, 102, .94) 0%, rgba(0, 46, 102, .82) 62%, rgba(0, 46, 102, .62) 100%),
      radial-gradient(circle at 20% 16%, rgba(150, 193, 237, .16), transparent 20rem);
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-image img {
    object-position: center;
    opacity: .58;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 68px;
  }

  .header .container {
    height: 68px;
  }

  .brand-logo {
    width: 92px;
    height: 92px;
    padding: 9px;
  }

  .nav-list {
    top: 0;
    background: #FBFDFF;
  }

  .section {
    padding: 4.4rem 0;
  }

  .hero {
    padding: 4.25rem 0 3.75rem;
    text-align: left;
  }

  .hero .container {
    text-align: left;
  }

  .hero-buttons,
  .hero-badges {
    justify-content: flex-start;
  }

  .hero-image {
    max-width: none;
    margin: 0;
    order: initial;
  }

  .books-grid {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-text {
    font-size: 1.02rem;
  }

  .container {
    padding: 0 1.15rem;
  }

  .hero-buttons .btn {
    width: 100%;
  }
}

/* ===== Home Collection Shelf Hero ===== */
.home-collection-hero {
  min-height: auto;
  padding: 5.2rem 0 4.8rem;
  background: url("assets/images/anasayfa-hero-arkaplan-kapak.jpg") center / cover no-repeat;
}

.home-collection-hero::before {
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(246, 238, 222, .92) 0%,
    rgba(246, 238, 222, .84) 0%,
    rgba(246, 238, 222, .56) 0%,
    rgba(246, 238, 222, .22) 0%,
    rgba(246, 238, 222, 0) 0%
  );
  pointer-events: none;
}

.home-collection-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.home-collection-hero::after {
  background: linear-gradient(90deg, transparent, rgba(8, 91, 191, .34), transparent);
}

.home-collection-hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(660px, .95fr) minmax(420px, 1.05fr);
  gap: 3.8rem;
  align-items: stretch;
}

.home-collection-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: var(--clr-text);
  align-self: center;
  transform: translateY(14px);
}

.home-collection-hero .hero-title,
.home-collection-hero h1,
.home-collection-hero h2,
.home-collection-hero h3 {
  color: #0b005f;
}

.home-collection-hero .hero-title {
  font-size: 2.74rem;
  line-height: 1.05;
}

.home-collection-hero .hero-title-line {
  display: block;
  white-space: nowrap;
}

.home-collection-hero .hero-title-divider {
  position: relative;
  width: min(520px, 100%);
  height: 18px;
  margin: .95rem 0 1.05rem;
}

.home-collection-hero .hero-title-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 3px;
  width: calc(100% - 3px);
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(184, 123, 38, .78),
    rgba(7, 43, 97, .34) 16%,
    rgba(7, 43, 97, .36) 43%,
    rgba(7, 43, 97, .16) 66%,
    rgba(7, 43, 97, 0) 100%
  );
}

.home-collection-hero .hero-title-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 3px;
  width: 11px;
  height: 11px;
  border: 1px solid rgba(184, 123, 38, .92);
  background: rgba(246, 238, 222, .88);
  box-shadow:
    20px 0 0 -4px rgba(184, 123, 38, .78),
    36px 0 0 -5px rgba(184, 123, 38, .48),
    0 0 0 4px rgba(246, 238, 222, .72);
  transform: translate(0, -50%) rotate(45deg);
}

.home-collection-hero .hero-text {
  max-width: 530px;
  color: #000000;
  font-size: 1.15rem;
  line-height: 1.75;
  font-weight: 400;
}

.home-collection-hero .hero-trust-line {
  display: inline-flex;
  align-items: center;
  margin: .15rem 0 1.6rem;
  color: var(--clr-primary);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.home-collection-hero .hero-trust-line::before {
  content: '';
  width: 34px;
  height: 2px;
  margin-right: .75rem;
  border-radius: 999px;
  background: var(--clr-accent);
}

.home-collection-hero .hero-eyebrow {
  color: var(--clr-hero-arka);
  background: rgba(255, 255, 255, 0.34);
  border-color: rgba(49, 95, 140, .18);
}

.home-collection-hero .btn-outline {
  color: var(--clr-primary);
  border-color: rgba(0, 46, 102, 0.28);
  background: rgba(255, 255, 255, .72);
}

.home-collection-hero .hero-summary-btn {
  gap: .55rem;
  color: var(--clr-white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--clr-primary), #0b4a93);
  box-shadow: 0 10px 24px rgba(0, 46, 102, .15);
}

.home-collection-hero .hero-summary-btn:hover {
  color: var(--clr-white);
  border-color: transparent;
  background: linear-gradient(135deg, #0d4a96 0%, #1e73e8 48%, #7AB4F6 100%);
  box-shadow: 0 6px 20px rgba(10, 59, 122, .3);
}

.hero-summary-icon {
  display: inline-block;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  background: currentColor;
  -webkit-mask: url("assets/icons/book.svg") center / contain no-repeat;
  mask: url("assets/icons/book.svg") center / contain no-repeat;
}

.home-collection-hero .hero-badge {
  color: var(--clr-primary);
  background: rgba(255, 255, 255, .74);
  border-color: rgba(8, 91, 191, .16);
  box-shadow: 0 10px 26px rgba(0, 46, 102, .06);
}

.home-collection-hero .hero-image {
  position: relative;
  inset: auto;
  z-index: 0;
  display: block;
  min-height: 610px;
  height: 100%;
  align-self: stretch;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
}

.home-collection-hero .hero-image img {
  opacity: 1;
  filter: none;
  object-position: center;
}

.hero-visual-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 610px;
  height: 100%;
  display: grid;
  place-items: center;
  isolation: isolate;
  border-radius: 18px;
  background:
    linear-gradient(rgba(0, 46, 102, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 46, 102, .04) 1px, transparent 1px),
    radial-gradient(circle at 50% 36%, rgba(150, 193, 237, .42), transparent 20rem),
    linear-gradient(145deg, rgba(255, 255, 255, .88), rgba(198, 223, 244, .66));
  background-size: 36px 36px, 36px 36px, auto, auto;
  border: 1px solid rgba(8, 91, 191, .18);
  box-shadow: 0 34px 80px rgba(0, 46, 102, .16);
}

.hero-visual-frame::after {
  content: '';
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 34px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 46, 102, .10), rgba(8, 91, 191, .26), rgba(0, 46, 102, .10));
  box-shadow: 0 18px 24px rgba(0, 46, 102, .14);
}

.hero-visual-frame > img,
.hero-visual-frame picture,
.hero-visual-frame picture img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-visual-frame > img,
.hero-visual-frame picture img {
  object-fit: contain;
  padding: 2rem;
}

.hero-visual-placeholder {
  position: relative;
  z-index: 1;
  width: min(78%, 560px);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  color: var(--clr-primary);
  text-align: center;
  border: 1px dashed rgba(8, 91, 191, .34);
  border-radius: 14px;
  background: rgba(255, 255, 255, .54);
  backdrop-filter: blur(8px);
}

.placeholder-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(8, 91, 191, .14), rgba(150, 193, 237, .38));
  border: 1px solid rgba(8, 91, 191, .20);
  position: relative;
}

.placeholder-icon::before,
.placeholder-icon::after {
  content: '';
  position: absolute;
  background: var(--clr-accent);
}

.placeholder-icon::before {
  width: 24px;
  height: 3px;
  left: 17px;
  top: 28px;
  border-radius: 999px;
}

.placeholder-icon::after {
  width: 3px;
  height: 24px;
  left: 28px;
  top: 17px;
  border-radius: 999px;
}

.placeholder-title {
  font-family: var(--ff-heading);
  font-size: 1.35rem;
  font-weight: 700;
}

.placeholder-subtitle {
  font-size: .9rem;
  color: #5D7185;
}

@media (max-width: 1180px) {
  .home-collection-hero .container {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr);
    gap: 2.8rem;
  }

  .home-collection-hero .hero-content {
    max-width: 640px;
  }

  .home-collection-hero .hero-title {
    font-size: 2.48rem;
  }
}

@media (max-width: 900px) {
  .home-collection-hero {
    padding: 4.9rem 0 4.1rem;
  }

  .home-collection-hero .container {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    align-items: start;
  }

  .home-collection-hero .hero-content {
    max-width: 720px;
  }

  .home-collection-hero .hero-title {
    font-size: 2.36rem;
  }

  .home-collection-hero .hero-title-line {
    white-space: normal;
  }

  .home-collection-hero .hero-image {
    min-height: 460px;
    height: auto;
    align-self: auto;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-visual-frame {
    min-height: 460px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .home-collection-hero .container {
    text-align: left;
  }

  .home-collection-hero .hero-image {
    min-height: 400px;
    order: 0;
  }

  .hero-visual-frame {
    min-height: 400px;
  }
}

@media (max-width: 480px) {
  .home-collection-hero {
    padding: 3.8rem 0 3.4rem;
  }

  .home-collection-hero .hero-title {
    font-size: 2.35rem;
  }

  .home-collection-hero .hero-image,
  .hero-visual-frame {
    min-height: 330px;
  }

  .hero-visual-placeholder {
    width: 84%;
    min-height: 220px;
  }
}

/* ===== Reader Instagram Shares ===== */
.reader-shares-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, #FFFFFF 0%, #FDFEFF 58%, #F9FBFD 100%),
    radial-gradient(circle at 12% -8rem, rgba(8, 91, 191, .05), transparent 30rem);
}

.reader-shares-header {
  margin-bottom: 2rem;
}

.reader-shares-header .section-header {
  margin-bottom: 1.65rem;
}

.reader-shares-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  text-align: left;
}

.reader-shares-subtitle {
  max-width: 680px;
  margin: 0;
  color: var(--clr-muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.reader-shares-ig {
  flex-shrink: 0;
  border-radius: 8px;
  margin-inline: 0;
}

.reader-shares-ig svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== Editorial Section Headers ===== */
.section-header {
  max-width: 780px;
  margin: 0 auto 3.25rem;
  text-align: center;
}

.section-header-left {
  max-width: 720px;
  margin: 0;
  text-align: left;
}

.section-header-compact {
  margin-bottom: 2.25rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  margin-bottom: 0.85rem;
  color: var(--clr-accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.section-kicker::before,
.section-kicker::after {
  content: '';
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: .38;
}

.section-header-left .section-kicker::before {
  display: none;
}

.section-header > h2 {
  max-width: 820px;
  margin: 0 auto;
}

.section-header > h2::after {
  content: '';
  display: block;
  width: min(260px, 72vw);
  height: 28px;
  margin: 1rem auto 0;
  background-image: url("data:image/svg+xml,%3Csvg width='260' height='28' viewBox='0 0 260 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23085BBF' stroke-width='1.35' stroke-linecap='round' stroke-linejoin='round' opacity='.72'%3E%3Cpath d='M9 14H86'/%3E%3Cpath d='M174 14h77'/%3E%3Cpath d='M98 14c11-12 22 11 32 0 10-11 21 12 32 0'/%3E%3Cpath d='M102 14c9 7 18-4 27 0 9 4 18-7 29 0' opacity='.58'/%3E%3Cpath d='M112 8c-10 0-10 12 0 12'/%3E%3Cpath d='M148 8c10 0 10 12 0 12'/%3E%3Ccircle cx='93' cy='14' r='2.1' fill='%23002E66' stroke='none'/%3E%3Ccircle cx='167' cy='14' r='2.1' fill='%23002E66' stroke='none'/%3E%3Cpath d='M130 8l6 6-6 6-6-6z' fill='%23085BBF' stroke='none'/%3E%3Cpath d='M5 14l7-4 7 4-7 4z' fill='%23085BBF' stroke='none'/%3E%3Cpath d='M241 14l7-4 7 4-7 4z' fill='%23085BBF' stroke='none'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.section-header-left > h2 {
  margin-left: 0;
  margin-right: 0;
}

.section-header-left > h2::after {
  margin-left: 0;
}

.section-header .section-subtitle,
.section-header .reader-shares-subtitle {
  max-width: 860px;
  margin: 1.15rem auto 0;
  color: var(--clr-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.section-header-left .reader-shares-subtitle {
  margin-left: 0;
}

.lead-section .section-kicker,
.lead-section .section-header > h2,
.lead-section .section-header .section-subtitle {
  color: var(--clr-white);
}

.lead-section .section-kicker {
  color: rgba(255, 255, 255, .78);
}

.lead-section .section-header > h2::after {
  background-image: url("data:image/svg+xml,%3Csvg width='260' height='28' viewBox='0 0 260 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23FFFFFF' stroke-width='1.35' stroke-linecap='round' stroke-linejoin='round' opacity='.76'%3E%3Cpath d='M9 14H86'/%3E%3Cpath d='M174 14h77'/%3E%3Cpath d='M98 14c11-12 22 11 32 0 10-11 21 12 32 0'/%3E%3Cpath d='M102 14c9 7 18-4 27 0 9 4 18-7 29 0' opacity='.58'/%3E%3Cpath d='M112 8c-10 0-10 12 0 12'/%3E%3Cpath d='M148 8c10 0 10 12 0 12'/%3E%3Ccircle cx='93' cy='14' r='2.1' fill='%23FFFFFF' stroke='none'/%3E%3Ccircle cx='167' cy='14' r='2.1' fill='%23FFFFFF' stroke='none'/%3E%3Cpath d='M130 8l6 6-6 6-6-6z' fill='%23FFFFFF' stroke='none'/%3E%3Cpath d='M5 14l7-4 7 4-7 4z' fill='%23FFFFFF' stroke='none'/%3E%3Cpath d='M241 14l7-4 7 4-7 4z' fill='%23FFFFFF' stroke='none'/%3E%3C/g%3E%3C/svg%3E");
}

.lead-section .section-header .section-subtitle {
  color: rgba(255, 255, 255, .72);
}

.reader-shares-carousel {
  position: relative;
}

.reader-shares-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(235px, 285px);
  gap: 1.15rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: 1px;
  scrollbar-width: none;
  padding: .2rem .1rem .35rem;
  -webkit-overflow-scrolling: touch;
}

.reader-shares-rail::-webkit-scrollbar {
  display: none;
}

.reader-shares-nav {
  position: absolute;
  top: 42%;
  z-index: 5;
  width: 46px;
  height: 46px;
  display: block;
  border: 1px solid rgba(8, 91, 191, .18);
  border-radius: 50%;
  color: var(--clr-primary);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 32px rgba(0, 46, 102, .16);
  cursor: pointer;
  font-size: 0;
  line-height: 1;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.reader-shares-nav::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.reader-shares-nav:hover {
  color: #FFFFFF;
  background: var(--clr-accent);
  transform: translateY(-1px);
}

.reader-shares-nav-prev {
  left: -3.2rem;
}

.reader-shares-nav-prev::before {
  transform: translate(-42%, -50%) rotate(225deg);
}

.reader-shares-nav-next {
  right: -3.2rem;
}

.reader-shares-nav-next::before {
  transform: translate(-58%, -50%) rotate(45deg);
}

.reader-share-card {
  position: relative;
  scroll-snap-align: start;
  border: 1px solid rgba(0, 46, 102, .10);
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: none;
  overflow: hidden;
}

.reader-share-open {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  padding: 0;
  border: 0;
  background: #EAF4FC;
  cursor: zoom-in;
  overflow: hidden;
}

.reader-share-open img,
.reader-share-open video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease;
}

.reader-share-open:hover img,
.reader-share-open:hover video {
  transform: scale(1.035);
}

.reader-share-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  gap: .35rem;
  text-align: center;
  color: var(--clr-primary);
  background:
    linear-gradient(rgba(0, 46, 102, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 46, 102, .04) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255,255,255,.88), rgba(198,223,244,.56));
  background-size: 30px 30px, 30px 30px, auto;
}

.reader-share-placeholder span {
  font-family: var(--ff-heading);
  font-size: 1.35rem;
  font-weight: 700;
}

.reader-share-placeholder small {
  color: #5D7185;
  font-size: .82rem;
  font-weight: 700;
}

.reader-share-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: .2rem;
  padding: .85rem .95rem;
  color: var(--clr-primary);
  background: #FFFFFF;
}

.reader-share-meta strong {
  display: block;
  width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  font-size: .9rem;
}

.reader-share-meta span {
  display: block;
  color: var(--clr-muted);
  font-size: .76rem;
  font-weight: 700;
}

.reader-share-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(0, 20, 45, .74);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s ease, visibility .24s ease;
}

.reader-share-modal.active {
  opacity: 1;
  visibility: visible;
}

.reader-share-modal-dialog {
  position: relative;
  width: min(1040px, 94vw);
  height: min(92vh, 860px);
  max-height: 92vh;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F5FAFF 100%);
  box-shadow: 0 34px 90px rgba(0, 21, 44, .34);
  transform: translateY(18px) scale(.98);
  transition: transform .24s ease;
}

.reader-share-modal.active .reader-share-modal-dialog {
  transform: translateY(0) scale(1);
}

.reader-share-modal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr);
  height: 100%;
  min-height: 0;
}

.reader-share-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--clr-primary);
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 30px rgba(0, 46, 102, .16);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.reader-share-modal-stage {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 0;
  padding: 0;
  background: #DDEEFF;
}

.reader-share-modal-media-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 0;
  overflow: hidden;
  background: #DDEEFF;
  border: 0;
  box-shadow: none;
}

.reader-share-modal-media-frame.is-portrait-video {
  width: 100%;
  height: 100%;
  max-width: 100%;
  aspect-ratio: auto;
  background: #0A223F;
}

.reader-share-modal-counter {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  min-width: 58px;
  padding: .45rem .8rem;
  border-radius: 999px;
  text-align: center;
  font-size: .82rem;
  font-weight: 700;
  color: var(--clr-white);
  background: rgba(0, 35, 77, .72);
  backdrop-filter: blur(8px);
}

.reader-share-modal-media {
  width: 100%;
  height: 100%;
  background: #F3F8FD;
}

.reader-share-modal-media img,
.reader-share-modal-media video {
  width: 100%;
  height: 100%;
  display: block;
  background: #0A223F;
}

.reader-share-modal-media img {
  object-fit: cover;
}

.reader-share-modal-media video {
  object-fit: contain;
}

.reader-share-modal-media-frame.is-portrait-video .reader-share-modal-media,
.reader-share-modal-media-frame.is-portrait-video .reader-share-modal-media video {
  background: #0A223F;
}

.reader-share-modal-media-frame.is-portrait-video .reader-share-modal-media video {
  object-fit: cover;
  object-position: center;
}

.reader-share-modal-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--clr-primary);
  box-shadow: 0 10px 28px rgba(0, 46, 102, .14);
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
  padding: 0;
}

.reader-share-modal-nav[hidden] {
  display: none;
}

.reader-share-modal-nav-prev {
  left: 1.2rem;
}

.reader-share-modal-nav-next {
  right: 1.2rem;
}

.reader-share-modal-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  gap: .5rem;
  color: var(--clr-primary);
  text-align: center;
  background:
    linear-gradient(rgba(0, 46, 102, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 46, 102, .04) 1px, transparent 1px),
    linear-gradient(145deg, #FFFFFF, #DDEEFF);
  background-size: 36px 36px, 36px 36px, auto;
}

.reader-share-modal-placeholder strong {
  font-family: var(--ff-heading);
  font-size: 1.55rem;
}

.reader-share-modal-placeholder span {
  color: var(--clr-muted);
  font-weight: 700;
}

.reader-share-modal-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 1.15rem 1.1rem 1.1rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,250,255,.98));
  overflow: hidden;
}

.reader-share-modal-profile {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding-bottom: .55rem;
}

.reader-share-modal-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--clr-accent), #7AB4F6);
  color: var(--clr-white);
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(8, 91, 191, .2);
}

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

.reader-share-modal-profile-text {
  min-width: 0;
}

.reader-share-modal-profile-text h3 {
  margin-bottom: 0;
  font-size: .94rem;
  line-height: 1.2;
}

.reader-share-modal-profile-text p {
  color: var(--clr-muted);
  font-size: .8rem;
}

.reader-share-modal-caption-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  border: 0;
  margin-top: .15rem;
  padding: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: default;
}

.reader-share-modal-caption-text {
  flex: 1;
  height: 100%;
  min-height: 0;
  max-height: 100%;
  font-size: .96rem;
  line-height: 1.64;
  color: #21364C;
  display: block;
  overflow-y: auto;
  padding-right: .25rem;
  white-space: pre-line;
}

.reader-share-modal-caption-token {
  color: var(--clr-accent);
  font-weight: 600;
}

.reader-share-modal-caption-hint {
  margin-top: .35rem;
  color: var(--clr-accent);
  font-size: .76rem;
  font-weight: 700;
}

.reader-share-modal-caption-hint[hidden] {
  display: none;
}

.reader-share-modal-share-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
  margin-top: .95rem;
  flex-shrink: 0;
}

.reader-share-modal-share-btn {
  min-height: 44px;
  border: 1px solid rgba(0, 46, 102, .12);
  border-radius: 12px;
  background: #F0F7FF;
  color: var(--clr-primary);
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.reader-share-modal-share-btn:hover:not(:disabled) {
  border-color: rgba(8, 91, 191, .28);
  background: #E2F0FF;
}

.reader-share-modal-share-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.reader-share-modal-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .95rem 1.1rem;
  border-radius: 14px;
  background: var(--clr-primary);
  color: var(--clr-white);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  flex-shrink: 0;
}

.reader-share-modal-link:hover {
  background: #0C3F7C;
}

@media (max-width: 768px) {
  .section-header {
    max-width: 100%;
    margin-bottom: 2.25rem;
    text-align: center;
  }

  .section-header-left {
    max-width: 100%;
    margin-bottom: 2.25rem;
    text-align: left;
  }

  .section-header > h2,
  .section-header .section-subtitle,
  .section-header .reader-shares-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .section-header > h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .section-header .section-kicker {
    margin-left: auto;
    margin-right: auto;
  }

  .section-kicker::before {
    display: none;
  }

  .section-header .section-kicker::before {
    display: block;
  }

  .section-header-left .section-kicker {
    margin-left: 0;
    margin-right: 0;
  }

  .section-header-left .section-kicker::before {
    display: none;
  }

  .reader-shares-header {
    display: block;
  }

  .reader-shares-row {
    display: block;
  }

  .reader-shares-ig {
    margin-top: 1.2rem;
  }

  .reader-shares-rail {
    grid-auto-columns: minmax(230px, 78vw);
    margin-right: -1.5rem;
    padding-right: 1.5rem;
  }

  .reader-shares-carousel {
    margin-inline: 0;
  }

  .reader-shares-nav {
    top: 40%;
    width: 42px;
    height: 42px;
  }

  .reader-shares-nav-prev {
    left: .2rem;
  }

  .reader-shares-nav-next {
    right: .2rem;
  }

  .reader-share-modal {
    padding: 0;
  }

  .reader-share-modal-dialog {
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
  }

  .reader-share-modal-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    min-height: 100%;
    position: relative;
  }

  .reader-share-modal-stage {
    padding: 0;
    background: #DDEEFF;
  }

  .reader-share-modal-media-frame {
    width: 100%;
    min-height: auto;
    height: auto;
    aspect-ratio: 4 / 5;
    border-radius: 0;
    border: 0;
    box-shadow: none;
  }

  .reader-share-modal-media-frame.is-portrait-video {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .reader-share-modal-counter {
    top: auto;
    bottom: .75rem;
    right: .75rem;
  }

  .reader-share-modal-nav {
    top: 46%;
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
    background: rgba(255,255,255,.86);
  }

  .reader-share-modal-nav-prev {
    left: .55rem;
  }

  .reader-share-modal-nav-next {
    right: .55rem;
  }

  .reader-share-modal-panel {
    padding: .7rem .85rem .9rem;
    margin-top: 0;
    border-radius: 0;
    overflow: hidden;
    transition: margin-top .24s ease, border-radius .24s ease, box-shadow .24s ease;
    position: relative;
    z-index: 3;
  }

  .reader-share-modal-profile {
    gap: .6rem;
    padding-bottom: .35rem;
  }

  .reader-share-modal-avatar {
    width: 34px;
    height: 34px;
  }

  .reader-share-modal-profile-text h3 {
    font-size: .84rem;
  }

  .reader-share-modal-profile-text p {
    font-size: .72rem;
  }

  .reader-share-modal-caption-card {
    margin-top: 0;
    cursor: pointer;
  }

  .reader-share-modal-caption-text {
    font-size: .84rem;
    line-height: 1.48;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-right: 0;
    white-space: pre-line;
  }

  .reader-share-modal-caption-hint {
    margin-top: .2rem;
    font-size: .68rem;
  }

  .reader-share-modal-link {
    margin-top: .75rem;
    padding: .78rem .95rem;
    font-size: .82rem;
  }

  .reader-share-modal-share-nav {
    gap: .55rem;
    margin-top: .8rem;
  }

  .reader-share-modal-share-btn {
    min-height: 40px;
    font-size: .74rem;
    border-radius: 10px;
  }

  .reader-share-modal.caption-expanded .reader-share-modal-panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin-top: 0;
    max-height: 62dvh;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
    box-shadow: 0 -14px 34px rgba(0, 21, 44, .12);
    z-index: 6;
  }

  .reader-share-modal.caption-expanded .reader-share-modal-caption-text {
    display: block;
    flex: 1 1 auto;
    height: auto;
    min-height: 0;
    max-height: none;
    overflow-y: auto;
    padding-right: .2rem;
    -webkit-line-clamp: unset;
    -webkit-box-orient: initial;
  }

  .reader-share-modal.caption-expanded .reader-share-modal-caption-card {
    height: auto;
    flex: 1 1 auto;
    min-height: 0;
  }
}

@media (max-width: 1240px) {
  .books-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .book-card {
    flex-direction: column;
    min-height: 0;
  }

  .book-card-image {
    flex-basis: auto;
    min-width: 0;
    aspect-ratio: 4 / 3;
    border-right: 0;
    border-bottom: 1px solid #C6DFF4;
  }

  #kitaplar.narrow-book-images .book-card-image {
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .book-card-body {
    padding: 1.35rem;
  }

  .price-main-row {
    align-items: flex-start;
  }

  .price-box-book .price-main-row {
    align-items: center;
  }

  .price-current {
    font-size: 1.55rem;
  }

  .price-box-book {
    padding: 0.48rem 0.48rem 0.48rem 0.72rem;
  }

  #kitaplar.compact-book-prices .price-box-book {
    padding: 0.54rem 0.62rem;
  }

  #kitaplar.compact-book-prices .book-single-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.62rem;
  }

  #kitaplar.compact-book-prices .book-card-body .price-note {
    font-size: 0.72rem;
    line-height: 1.1;
    text-transform: uppercase;
    white-space: nowrap;
  }

  #kitaplar.compact-book-prices .book-single-price-line {
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 0.22rem;
    white-space: nowrap;
  }

  #kitaplar.compact-book-prices .price-box-book .price-old,
  #kitaplar.compact-book-prices .price-replace {
    font-size: 0.72rem;
  }

  #kitaplar.compact-book-prices .price-box-book .price-current {
    font-size: 1rem;
  }

  @media (max-width: 360px) {
    #kitaplar.compact-book-prices .price-box-book {
      padding: 0.54rem 0.5rem;
    }

    #kitaplar.compact-book-prices .book-single-price {
      gap: 0.36rem;
    }

    #kitaplar.compact-book-prices .book-card-body .price-note,
    #kitaplar.compact-book-prices .price-box-book .price-old,
    #kitaplar.compact-book-prices .price-replace {
      font-size: 0.66rem;
    }

    #kitaplar.compact-book-prices .book-single-price-line {
      gap: 0.16rem;
    }

    #kitaplar.compact-book-prices .price-box-book .price-current {
      font-size: 0.94rem;
    }
  }

  .price-box-book .price-discount {
    width: 50px;
    min-height: 50px;
    padding: 0.33rem 0.43rem 0.33rem;
    gap: 0.18rem;
    border-radius: 5px;
  }

  .price-box-book .price-discount-percent {
    font-size: 1rem;
  }

  .price-box-book .price-discount-label {
    font-size: 0.7rem;
  }

  .mixed-set-banner {
    padding: 0.95rem;
  }

  .mixed-set-banner-offer {
    padding: 0.82rem 0.9rem 0.9rem;
    gap: 0.62rem;
  }

  .mixed-set-offer-top {
    flex-wrap: wrap;
    gap: 0.48rem 0.7rem;
    align-items: start;
    padding-bottom: 0.64rem;
  }

  .mixed-set-price-block {
    flex-wrap: wrap;
    gap: 0.28rem 0.46rem;
  }

  .mixed-set-price-kicker {
    font-size: 0.92rem;
  }

  .mixed-set-banner-offer .mixed-set-price-line {
    font-size: 1.05rem;
    gap: 0.26rem;
  }

  .mixed-set-unit-price {
    padding: 0;
    border-left: 0;
  }

  .mixed-set-banner-offer .mixed-set-offer-copy {
    font-size: 0.82rem;
    line-height: 1.46;
  }

  :is(.four-caliphs-books, .mubarek-women-books) .mixed-set-banner-offer {
    padding: 0.88rem 0.95rem;
  }

  :is(.four-caliphs-books, .mubarek-women-books) .mixed-set-offer-top,
  :is(.four-caliphs-books, .mubarek-women-books) .mixed-set-price-block {
    align-items: flex-start;
  }

  :is(.four-caliphs-books, .mubarek-women-books) .mixed-set-price-kicker {
    width: 100%;
    padding-right: 0;
    border-right: 0;
  }

  :is(.four-caliphs-books, .mubarek-women-books) .mixed-set-unit-price {
    width: 100%;
    justify-content: flex-start;
    padding: 0.52rem 0.62rem;
  }

  .mixed-set-banner:not(.mixed-set-banner-offer) strong {
    font-size: 1.25rem;
  }

  .book-detail-btn {
    width: 100%;
  }
}

/* ===== Alternating Section Bands ===== */
.section-theme-light {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(10, 59, 122, .055);
  background:
    linear-gradient(180deg, #FFFFFF 0%, #FDFEFF 58%, #F9FBFD 100%),
    radial-gradient(circle at 50% -8rem, rgba(8, 91, 191, .045), transparent 32rem);
}

.section-theme-dark {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(10, 59, 122, .075);
  color: var(--clr-text);
  background:
    linear-gradient(180deg, #EEF5FB 0%, #F3F8FC 52%, #EAF3FA 100%),
    radial-gradient(circle at 50% -8rem, rgba(8, 91, 191, .075), transparent 34rem);
}

.section-theme-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .52), rgba(255, 255, 255, 0) 34%),
    linear-gradient(90deg, rgba(255, 255, 255, .42), rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0) 82%, rgba(255, 255, 255, .42));
}

.section-theme-light > .container,
.section-theme-dark > .container {
  position: relative;
}

.section-theme-dark h2,
.section-theme-dark .section-header > h2,
.section-theme-dark .section-header .section-subtitle,
.section-theme-dark .reader-shares-subtitle {
  color: var(--clr-primary);
}

.section-theme-dark .section-header .section-subtitle,
.section-theme-dark .reader-shares-subtitle,
.section-theme-dark.cta-section p {
  color: var(--clr-muted);
}

.section-theme-dark .section-kicker {
  color: var(--clr-accent);
}

.section-theme-dark .section-header > h2::after {
  background-image: url("data:image/svg+xml,%3Csvg width='260' height='28' viewBox='0 0 260 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23085BBF' stroke-width='1.35' stroke-linecap='round' stroke-linejoin='round' opacity='.72'%3E%3Cpath d='M9 14H86'/%3E%3Cpath d='M174 14h77'/%3E%3Cpath d='M98 14c11-12 22 11 32 0 10-11 21 12 32 0'/%3E%3Cpath d='M102 14c9 7 18-4 27 0 9 4 18-7 29 0' opacity='.58'/%3E%3Cpath d='M112 8c-10 0-10 12 0 12'/%3E%3Cpath d='M148 8c10 0 10 12 0 12'/%3E%3Ccircle cx='93' cy='14' r='2.1' fill='%23002E66' stroke='none'/%3E%3Ccircle cx='167' cy='14' r='2.1' fill='%23002E66' stroke='none'/%3E%3Cpath d='M130 8l6 6-6 6-6-6z' fill='%23085BBF' stroke='none'/%3E%3Cpath d='M5 14l7-4 7 4-7 4z' fill='%23085BBF' stroke='none'/%3E%3Cpath d='M241 14l7-4 7 4-7 4z' fill='%23085BBF' stroke='none'/%3E%3C/g%3E%3C/svg%3E");
}

.section-theme-dark .set-card,
.section-theme-dark .book-card,
.section-theme-dark .feature-card,
.section-theme-dark .audience-detail-card,
.section-theme-dark .benefit-num-card,
.section-theme-dark .accordion-item,
.section-theme-dark .print-badge,
.section-theme-dark .neden-flow-card,
.section-theme-dark .reader-share-card {
  background: rgba(255, 255, 255, .95);
  border-color: rgba(198, 223, 244, .82);
  box-shadow: 0 18px 44px rgba(10, 59, 122, .08);
}

#neden .feature-card:hover,
#baski .print-badge:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.section-theme-dark.lead-section h2,
.section-theme-dark.lead-section .section-header > h2,
.section-theme-light.lead-section h2,
.section-theme-light.lead-section .section-header > h2 {
  color: var(--clr-primary);
}

.section-theme-dark.lead-section .section-kicker,
.section-theme-light.lead-section .section-kicker {
  color: var(--clr-accent);
}

.section-theme-dark.lead-section .section-header > h2::after,
.section-theme-light.lead-section .section-header > h2::after {
  background-image: url("data:image/svg+xml,%3Csvg width='260' height='28' viewBox='0 0 260 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23085BBF' stroke-width='1.35' stroke-linecap='round' stroke-linejoin='round' opacity='.72'%3E%3Cpath d='M9 14H86'/%3E%3Cpath d='M174 14h77'/%3E%3Cpath d='M98 14c11-12 22 11 32 0 10-11 21 12 32 0'/%3E%3Cpath d='M102 14c9 7 18-4 27 0 9 4 18-7 29 0' opacity='.58'/%3E%3Cpath d='M112 8c-10 0-10 12 0 12'/%3E%3Cpath d='M148 8c10 0 10 12 0 12'/%3E%3Ccircle cx='93' cy='14' r='2.1' fill='%23002E66' stroke='none'/%3E%3Ccircle cx='167' cy='14' r='2.1' fill='%23002E66' stroke='none'/%3E%3Cpath d='M130 8l6 6-6 6-6-6z' fill='%23085BBF' stroke='none'/%3E%3Cpath d='M5 14l7-4 7 4-7 4z' fill='%23085BBF' stroke='none'/%3E%3Cpath d='M241 14l7-4 7 4-7 4z' fill='%23085BBF' stroke='none'/%3E%3C/g%3E%3C/svg%3E");
}

.section-theme-dark.lead-section .section-header .section-subtitle,
.section-theme-dark.lead-section .lead-form-note,
.section-theme-dark.lead-section .lead-trust-note,
.section-theme-light.lead-section .section-header .section-subtitle,
.section-theme-light.lead-section .lead-form-note,
.section-theme-light.lead-section .lead-trust-note {
  color: var(--clr-muted);
}

.section-theme-dark.lead-section .lead-form input,
.section-theme-dark.lead-section .lead-form select,
.section-theme-light.lead-section .lead-form input,
.section-theme-light.lead-section .lead-form select {
  color: var(--clr-text);
  background: rgba(255, 255, 255, .84);
  border-color: rgba(10, 59, 122, .18);
}

.section-theme-dark.lead-section .lead-form input::placeholder,
.section-theme-light.lead-section .lead-form input::placeholder {
  color: rgba(90, 106, 126, .72);
}

.section-theme-dark.lead-section .lead-form .btn,
.section-theme-light.lead-section .lead-form .btn {
  color: var(--clr-white);
  background: var(--clr-primary);
}

/* ===== Premium Lead Offer ===== */
.lead-section {
  padding: 6.5rem 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(8, 91, 191, .12), transparent 22rem),
    radial-gradient(circle at 86% 72%, rgba(196, 161, 88, .13), transparent 24rem),
    linear-gradient(180deg, #FFFFFF 0%, #EEF6FC 48%, #F9FCFF 100%);
}

.lead-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10, 59, 122, .04) 1px, transparent 1px),
    linear-gradient(rgba(10, 59, 122, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.lead-section::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 2.5rem;
  width: min(760px, 82vw);
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(10, 59, 122, .18), transparent);
  transform: translateX(-50%);
}

.lead-section-header {
  margin-bottom: 3.35rem;
}

.lead-section > .container {
  max-width: 1320px;
}

.lead-offer-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  align-items: stretch;
  gap: clamp(2.25rem, 4vw, 4rem);
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(1.7rem, 3vw, 2.55rem);
  border: 1px solid rgba(10, 59, 122, .14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .97), rgba(247, 251, 255, .9)),
    linear-gradient(90deg, rgba(10, 59, 122, .055) 1px, transparent 1px);
  background-size: auto, 28px 100%;
  box-shadow: 0 28px 80px rgba(10, 59, 122, .15);
  overflow: hidden;
  text-align: left;
}

.lead-offer-shell::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--clr-accent) 0%, var(--clr-primary) 50%, var(--clr-accent) 100%);
}

.lead-offer-shell::after {
  content: '';
  position: absolute;
  right: -42px;
  top: -42px;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(10, 59, 122, .1);
  border-radius: 50%;
  background: rgba(196, 161, 88, .1);
  pointer-events: none;
}

.lead-offer-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  height: 100%;
}

.lead-preview-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: .25rem clamp(.75rem, 2vw, 1.4rem) .25rem 0;
}

.lead-preview-card::before {
  display: none;
}

.lead-preview-card::after {
  display: none;
}

.lead-preview-label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: 1.05rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--clr-accent);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
}

.lead-pdf-icon,
.btn-pdf-icon {
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.lead-pdf-icon {
  width: 1.75em;
  height: 1.75em;
  line-height: 1.8;
}

.btn-pdf-icon {
  width: 1.45em;
  height: 1.45em;
}

.lead-preview-card > strong {
  display: block;
  max-width: 430px;
  color: var(--clr-primary);
  font-family: var(--ff-heading);
  font-size: 1.65rem;
  line-height: 1.16;
}

.lead-preview-card > p {
  max-width: 470px;
  margin-top: .75rem;
  color: var(--clr-muted);
  font-size: .92rem;
  line-height: 1.65;
}

.lead-value-list {
  display: grid;
  gap: 1rem;
}

.lead-preview-card .lead-value-list {
  margin-top: 1.45rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(10, 59, 122, .1);
}

.lead-value-item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: .7rem;
  align-items: start;
}

.lead-value-icon {
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: .18rem;
  color: var(--clr-accent);
}

.lead-value-icon::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 4px;
  width: 10px;
  height: 6px;
  border-left: 2.2px solid currentColor;
  border-bottom: 2.2px solid currentColor;
  transform: rotate(-45deg);
}

.lead-value-item strong {
  display: block;
  color: var(--clr-primary);
  font-size: .92rem;
  line-height: 1.34;
}

.lead-value-item p {
  margin-top: .1rem;
  color: var(--clr-muted);
  font-size: .92rem;
  line-height: 1.58;
}

.lead-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: .25rem;
}

.lead-preview-card .lead-proof-row {
  margin-top: auto;
  padding-top: 1.35rem;
}

.lead-proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: .42rem .72rem;
  border: 1px solid rgba(10, 59, 122, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  color: var(--clr-primary);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.25;
}

.lead-form-card {
  scroll-margin-top: 120px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  height: 100%;
  padding: .25rem 0 .25rem clamp(2rem, 4vw, 3.25rem);
  border-left: 1px solid rgba(10, 59, 122, .12);
}

.lead-form-card::before {
  display: none;
}

.section-theme-dark.lead-section .lead-form-card .lead-form-note,
.section-theme-light.lead-section .lead-form-card .lead-form-note {
  margin: 0 0 1.15rem;
  color: var(--clr-primary);
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.42;
}

.lead-form-card .lead-form {
  max-width: none;
  width: 100%;
  margin: 0;
  gap: .75rem;
}

.section-theme-dark.lead-section .lead-form-card .lead-form input,
.section-theme-dark.lead-section .lead-form-card .lead-form select,
.section-theme-light.lead-section .lead-form-card .lead-form input,
.section-theme-light.lead-section .lead-form-card .lead-form select {
  min-height: 56px;
  padding: .95rem 1rem;
  border: 1px solid rgba(10, 59, 122, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  color: var(--clr-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .65);
}

.section-theme-dark.lead-section .lead-form-card .lead-form select,
.section-theme-light.lead-section .lead-form-card .lead-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 3.1rem;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 7.25 9 11.75l4.5-4.5' fill='none' stroke='%230A3B7A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.15rem center;
  background-size: 18px 18px;
}

.section-theme-dark.lead-section .lead-form-card .lead-form input:focus,
.section-theme-dark.lead-section .lead-form-card .lead-form select:focus,
.section-theme-light.lead-section .lead-form-card .lead-form input:focus,
.section-theme-light.lead-section .lead-form-card .lead-form select:focus {
  border-color: rgba(8, 91, 191, .5);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(8, 91, 191, .1);
}

.section-theme-dark.lead-section .lead-form-card .lead-form .btn,
.section-theme-light.lead-section .lead-form-card .lead-form .btn {
  min-height: 58px;
  margin-top: .28rem;
  gap: .55rem;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #08366F 0%, #0A3B7A 54%, #0D5CC0 100%);
  color: #FFFFFF;
  box-shadow: 0 16px 34px rgba(10, 59, 122, .24);
}

.section-theme-dark.lead-section .lead-form-card .lead-form .btn:hover,
.section-theme-light.lead-section .lead-form-card .lead-form .btn:hover {
  background:
    linear-gradient(135deg, #062E60 0%, #093873 54%, #0B52AE 100%);
  box-shadow: 0 20px 42px rgba(10, 59, 122, .3);
}

.lead-form-card .lead-trust-note {
  margin: .95rem 0 0;
  color: var(--clr-muted);
  font-size: .78rem;
  line-height: 1.55;
  text-align: center;
}

.lead-form-card .form-success {
  border: 1px solid rgba(50, 167, 77, .2);
  background: rgba(50, 167, 77, .08);
  color: #226236;
}

.lead-form-card .form-error {
  margin: .8rem 0 0;
  padding: .85rem 1rem;
  border: 1px solid rgba(180, 54, 54, .22);
  border-radius: 8px;
  background: rgba(180, 54, 54, .08);
  color: #8B2D2D;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.45;
}

.lead-form-card .form-error[hidden] {
  display: none;
}

.lead-form-card .summary-download-btn {
  display: inline-flex;
  margin-top: 1rem;
}

.lead-form-card .summary-download-btn[hidden] {
  display: none;
}

.section-theme-dark.cta-section h2 {
  color: var(--clr-primary);
}

@media (max-width: 900px) {
  .lead-section {
    padding: 5.5rem 0;
  }

  .lead-offer-shell {
    grid-template-columns: 1fr;
    max-width: 680px;
    gap: 0;
    padding: 1.55rem;
  }

  .lead-preview-card {
    width: 100%;
    padding: .15rem 0 1.35rem;
  }

  .lead-form-card {
    border-left: 0;
    border-top: 1px solid rgba(10, 59, 122, .12);
    padding: 1.35rem 0 .15rem;
  }
}

@media (max-width: 768px) {
  .lead-section-header {
    text-align: center;
  }

  .lead-form-card {
    padding: 1.25rem 0 0;
  }
}

@media (max-width: 480px) {
  .lead-section {
    padding: 4.5rem 0;
  }

  .lead-preview-card {
    min-height: auto;
    padding: .1rem 0 1.2rem;
  }

  .lead-preview-card > strong {
    font-size: 1.42rem;
  }

  .lead-value-item {
    grid-template-columns: 18px minmax(0, 1fr);
    gap: .7rem;
  }

  .lead-value-icon {
    width: 18px;
    height: 18px;
  }

  .lead-value-icon::before {
    left: 2px;
    top: 4px;
  }

  .lead-proof-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .lead-proof-row span {
    justify-content: center;
    text-align: center;
  }
}

/* ===== Quiz Hub (quizler.html) ===== */
.nav-link[aria-current="page"] .nav-title {
  color: var(--clr-accent);
}

.quiz-hub-featured {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  margin-bottom: 2.25rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--clr-primary) 0%, #0d4f9e 100%);
  color: var(--clr-white);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  transition: var(--transition);
}

.quiz-hub-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(10, 59, 122, .28);
}

.quiz-hub-featured-text {
  max-width: 640px;
}

.quiz-hub-featured-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  margin-bottom: 0.9rem;
}

.quiz-hub-featured h2 {
  font-family: var(--ff-heading);
  color: var(--clr-white);
  font-size: 1.85rem;
  margin-bottom: 0.6rem;
}

.quiz-hub-featured p {
  color: rgba(255, 255, 255, .88);
  line-height: 1.65;
  margin-bottom: 1.3rem;
}

.quiz-hub-featured-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: var(--clr-white);
  color: var(--clr-primary);
  transition: var(--transition);
}

.quiz-hub-featured:hover .quiz-hub-featured-btn {
  gap: 0.75rem;
}

.quiz-hub-featured-icon {
  flex: 0 0 auto;
  opacity: 0.9;
  color: rgba(255, 255, 255, .85);
}

.quiz-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.quiz-hub-grid .set-card-body h3 {
  font-size: 1.35rem;
}

.quiz-hub-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .quiz-hub-featured {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.6rem 1.4rem;
    text-align: left;
  }

  .quiz-hub-featured-icon {
    display: none;
  }

  .quiz-hub-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   ÜCRETSIZ TANITIM ÖZETI — GEÇICI GIZLEME
   Tanıtım özeti PDF'leri hazırlanana kadar bu alan sitede
   gösterilmiyor. Kod silinmedi; PDF'ler hazır olunca aşağıdaki
   bloğu kaldırmak yeterli (bölüm, hero butonu, mobil CTA ve
   footer linki #ozet-form bağlantısı üzerinden gizleniyor).
   ========================================================= */
#ucretsiz-ozet,
a[href="#ozet-form"] {
  display: none !important;
}

/* =========================================================
   KVKK Çerez Onay Bandı
   ========================================================= */
.kvkk-cookie-bar {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, 140%);
  width: min(960px, calc(100% - 32px));
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  background: var(--clr-white, #fff);
  color: var(--clr-text, #1F2D3D);
  border: 1px solid var(--clr-border, #E2E6ED);
  border-radius: var(--radius, 14px);
  box-shadow: var(--shadow-lg, 0 16px 48px rgba(10, 59, 122, .12));
  padding: 16px 20px;
  opacity: 0;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1), opacity .4s ease;
}
.kvkk-cookie-bar.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}
.kvkk-cookie-text {
  flex: 1 1 320px;
  margin: 0;
  font-family: var(--ff-body, sans-serif);
  font-size: 14px;
  line-height: 1.55;
  color: var(--clr-muted, #5A6A7E);
}
.kvkk-cookie-text a {
  color: var(--clr-accent, #1e73e8);
  text-decoration: underline;
}
.kvkk-cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.kvkk-btn {
  font-family: var(--ff-body, sans-serif);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm, 10px);
  padding: 11px 22px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.kvkk-btn-accept {
  background: var(--clr-primary, #0A3B7A);
  color: #fff;
}
.kvkk-btn-accept:hover {
  background: var(--clr-accent, #1e73e8);
}
.kvkk-btn-reject {
  background: transparent;
  color: var(--clr-muted, #5A6A7E);
  border-color: var(--clr-border, #E2E6ED);
}
.kvkk-btn-reject:hover {
  border-color: var(--clr-muted, #5A6A7E);
  color: var(--clr-text, #1F2D3D);
}
@media (max-width: 600px) {
  .kvkk-cookie-bar {
    bottom: 12px;
    padding: 14px 16px;
    gap: 12px;
  }
  .kvkk-cookie-actions {
    width: 100%;
  }
  .kvkk-btn {
    flex: 1;
    padding: 12px 14px;
  }
}
