/* =========================================================
   Bomma Kada — Toys / Books mode toggle + Book homepage
   Brand red: #e92530
   ========================================================= */

/* ---- TOP TOGGLE ---- */
.bk-mode-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-height: 34px;
}

.bk-mode-toggle {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.bk-mode-toggle a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  color: #fff;
  padding: 7px 14px;
  border-radius: 999px;
  transition: all 0.2s ease;
  line-height: 1;
  white-space: nowrap;
}

.bk-mode-toggle a i {
  font-size: 12px;
}

.bk-mode-toggle a.is-active {
  background: #fff;
  color: #e92530;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.bk-mode-toggle a:not(.is-active):hover {
  background: rgba(255, 255, 255, 0.16);
}

/* When header-top text is dark on some themes */
.main-header .header-top .bk-mode-toggle a {
  color: #fff;
}
.main-header .header-top .bk-mode-toggle a.is-active {
  color: #e92530;
}

/* Sticky micro bar for mobile clarity */
.bk-mode-mobile-bar {
  display: none;
}

/* ---- BOOK MODE GLOBAL ACCENTS ---- */
body.bk-mode-book {
  --bk-book-accent: #e92530;
}

body.bk-mode-book .main-header .header-top {
  background: linear-gradient(90deg, #9b2226 0%, #e92530 55%, #ff5a5f 100%) !important;
}

body.bk-mode-book .sec-title h2 span,
body.bk-mode-book .bk-eyebrow {
  color: #e92530;
}

/* ---- BOOK HERO ---- */
.bk-book-hero {
  position: relative;
  padding: 54px 0 30px;
  background:
    radial-gradient(circle at 12% 20%, rgba(233, 37, 48, 0.10), transparent 40%),
    radial-gradient(circle at 88% 10%, rgba(255, 90, 95, 0.12), transparent 36%),
    linear-gradient(180deg, #fff7f6 0%, #ffffff 70%);
  overflow: hidden;
}

.bk-book-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.bk-book-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e92530;
  background: rgba(233, 37, 48, 0.08);
  border-radius: 999px;
  padding: 8px 14px;
  margin-bottom: 16px;
}

.bk-book-hero-copy h1 {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.12;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
}

.bk-book-hero-copy h1 span {
  color: #e92530;
}

.bk-book-hero-copy > p {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  max-width: 540px;
  margin: 0 0 22px;
}

.bk-book-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.bk-book-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #e92530;
  border: 2px solid rgba(233, 37, 48, 0.25);
  border-radius: 40px;
  padding: 11px 22px;
  text-decoration: none !important;
  background: #fff;
  transition: all 0.2s ease;
}

.bk-book-secondary-btn:hover {
  border-color: #e92530;
  background: rgba(233, 37, 48, 0.04);
  color: #e92530;
}

.bk-book-hero-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.bk-book-hero-points li {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #444;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.bk-book-hero-points li i {
  color: #e92530;
}

.bk-book-hero-visual {
  position: relative;
  min-height: 360px;
}

.bk-book-stack {
  position: relative;
  height: 380px;
}

.bk-book-float {
  position: absolute;
  width: 210px;
  height: 270px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 40px rgba(25, 25, 25, 0.14);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.25s ease;
}

.bk-book-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bk-book-float-1 { left: 18%; top: 24px; transform: rotate(-8deg); z-index: 2; }
.bk-book-float-2 { left: 42%; top: 0; transform: rotate(3deg); z-index: 3; }
.bk-book-float-3 { left: 58%; top: 70px; transform: rotate(10deg); z-index: 1; }

.bk-book-float:hover { transform: translateY(-6px) rotate(0deg) scale(1.03); z-index: 5; }

.bk-book-trust {
  margin-top: 10px;
}

/* ---- CATEGORY CARDS ---- */
.bk-book-cat-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.bk-book-cat-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  text-decoration: none !important;
  background: #fff;
  border: 1px solid rgba(20,20,20,0.06);
  border-radius: 18px;
  padding: 20px 18px;
  box-shadow: 0 10px 24px rgba(25,25,25,0.04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  min-height: 190px;
}

.bk-book-cat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(233,37,48,0.2);
  box-shadow: 0 16px 32px rgba(233,37,48,0.1);
}

.bk-book-cat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(233,37,48,0.09);
  color: #e92530;
  font-size: 18px;
  margin-bottom: 14px;
}

.bk-book-cat-card h3 {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 8px;
}

.bk-book-cat-card p {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 13.5px;
  line-height: 1.5;
  color: #666;
  margin: 0 0 14px;
  flex: 1;
}

.bk-book-cat-cta {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #e92530;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---- PROMO STRIPS ---- */
.bk-book-promo-row {
  padding: 10px 0 40px;
}

.bk-book-promo {
  border-radius: 20px;
  color: #fff;
  padding: 28px 24px;
  min-height: 190px;
  margin-bottom: 20px;
  box-shadow: 0 14px 30px rgba(233,37,48,0.18);
}

.bk-book-promo h6 {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
  margin: 0 0 8px;
}

.bk-book-promo h3 {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #fff;
}

.bk-book-promo p {
  font-family: "Nunito", system-ui, sans-serif;
  margin: 0 0 16px;
  opacity: 0.95;
}

.bk-book-promo .theme-btn.btn-one {
  background: #fff !important;
  color: #e92530 !important;
  border-color: #fff !important;
}

/* ---- PRODUCT GRID ---- */
.bk-book-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  text-align: left;
}

.bk-book-product-card {
  height: 100%;
}

.bk-book-product-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none !important;
  background: #fff;
  border: 1px solid rgba(20,20,20,0.06);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(25,25,25,0.05);
  transition: transform .22s ease, box-shadow .22s ease;
}

.bk-book-product-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(233,37,48,0.12);
}

.bk-book-product-media {
  position: relative;
  aspect-ratio: 1/1;
  background: #faf7f7;
}

.bk-book-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  background: #fff;
}

.bk-book-off {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg,#ff5a5f,#e92530);
  color: #fff;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
}

.bk-book-product-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.bk-book-product-cat {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e92530;
}

.bk-book-product-body h3 {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 750;
  color: #1f1f1f;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}

.bk-book-product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.bk-book-product-price .bk-price-now {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #e92530;
}

.bk-book-product-price .bk-price-was {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
}

.bk-book-product-price .bk-price-off {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #0a7a3e;
  background: rgba(10,122,62,0.08);
  padding: 2px 8px;
  border-radius: 999px;
}

.bk-book-product-cta {
  margin-top: auto;
  padding-top: 6px;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #555;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bk-book-product-link:hover .bk-book-product-cta {
  color: #e92530;
}

/* ---- WHY ---- */
.bk-book-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.bk-book-why-card {
  background: #fff;
  border: 1px solid rgba(20,20,20,0.06);
  border-radius: 18px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.bk-book-why-card i {
  font-size: 26px;
  color: #e92530;
  margin-bottom: 12px;
}

.bk-book-why-card h4 {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #1a1a1a;
}

.bk-book-why-card p {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: #666;
  margin: 0;
}

/* ---- CTA ---- */
.bk-book-cta {
  padding: 0 0 90px;
}

.bk-book-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, #fff5f5, #ffffff);
  border: 1px solid rgba(233,37,48,0.12);
  border-radius: 22px;
  padding: 28px 30px;
}

.bk-book-cta-inner h2 {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 6px;
  color: #1a1a1a;
}

.bk-book-cta-inner p {
  font-family: "Nunito", system-ui, sans-serif;
  margin: 0;
  color: #666;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1199px) {
  .bk-book-cat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bk-book-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bk-book-why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 991px) {
  .bk-book-hero-grid { grid-template-columns: 1fr; gap: 18px; }
  .bk-book-hero-visual { min-height: 280px; }
  .bk-book-stack { height: 300px; }
  .bk-book-float { width: 160px; height: 210px; }
  .bk-book-float-1 { left: 12%; }
  .bk-book-float-2 { left: 38%; }
  .bk-book-float-3 { left: 58%; }
  .main-header .header-top .info-list,
  .main-header .header-top .text { display: none; }
  .main-header .header-top .top-inner {
    justify-content: center !important;
  }
  .bk-mode-toggle-wrap { justify-content: center; width: 100%; }
}

@media (max-width: 767px) {
  .bk-book-cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .bk-book-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .bk-book-why-grid { grid-template-columns: 1fr; }
  .bk-book-cta-inner { flex-direction: column; text-align: center; }
  .bk-book-hero { padding: 28px 0 16px; }
  .bk-mode-toggle a { padding: 7px 12px; font-size: 12px; }
  .bk-book-cat-card { min-height: 160px; padding: 14px; }
  .bk-book-cat-card h3 { font-size: 15px; }
}


/* =========================================================
   BOOK HOMEPAGE BANNER v2
   ========================================================= */
.bk-book-banner {
  position: relative;
  overflow: hidden;
  padding: 56px 0 42px;
  color: #fff;
  isolation: isolate;
}

.bk-book-banner-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(125deg, #6b0f1a 0%, #9b2226 28%, #e92530 62%, #ff5a5f 100%);
}

.bk-book-banner-pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,0.35) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,0.12) 0 1.5px, transparent 2px);
  background-size: 48px 48px, 32px 32px, 56px 56px;
  pointer-events: none;
}

.bk-book-banner::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 68%);
  z-index: -1;
  pointer-events: none;
}

.bk-book-banner-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px 28px;
  align-items: center;
}

.bk-book-banner-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 8px 14px;
  margin-bottom: 18px;
  backdrop-filter: blur(6px);
}

.bk-book-banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.2);
}

.bk-book-banner-copy h1 {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 14px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.bk-book-banner-copy h1 span {
  color: #ffe3e5;
  position: relative;
}

.bk-book-banner-copy > p {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
  max-width: 540px;
  margin: 0 0 22px;
}

.bk-book-banner-copy > p strong {
  color: #fff;
  font-weight: 800;
}

.bk-book-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.bk-book-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #e92530 !important;
  background: #fff;
  border-radius: 999px;
  padding: 13px 24px;
  text-decoration: none !important;
  box-shadow: 0 12px 28px rgba(0,0,0,0.16);
  transition: transform .2s ease, box-shadow .2s ease;
}

.bk-book-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.2);
  color: #c9184a !important;
}

.bk-book-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 14.5px;
  font-weight: 800;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 999px;
  padding: 12px 20px;
  text-decoration: none !important;
  background: rgba(255,255,255,0.08);
  transition: all .2s ease;
}

.bk-book-btn-ghost:hover {
  background: rgba(255,255,255,0.16);
  border-color: #fff;
}

.bk-book-banner-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 0;
  background: rgba(0,0,0,0.14);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 14px 8px;
  max-width: 520px;
  backdrop-filter: blur(8px);
}

.bk-book-stat {
  flex: 1 1 90px;
  text-align: center;
  min-width: 80px;
}

.bk-book-stat strong {
  display: block;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}

.bk-book-stat span {
  display: block;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.78);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.bk-book-stat-divider {
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,0.18);
}

/* Showcase shelf */
.bk-book-banner-showcase {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bk-book-banner-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.28), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.bk-book-shelf {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 520px;
  min-height: 300px;
  padding-bottom: 18px;
}

.bk-book-shelf-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 18%;
  min-width: 78px;
  text-decoration: none !important;
  color: #fff;
  transition: transform .25s ease, z-index 0s;
  position: relative;
}

.bk-book-shelf-item-1 { transform: translateY(18px) rotate(-10deg); z-index: 1; }
.bk-book-shelf-item-2 { transform: translateY(6px) rotate(-4deg); z-index: 2; }
.bk-book-shelf-item-3 { transform: translateY(-8px) rotate(0deg); z-index: 5; width: 22%; min-width: 96px; }
.bk-book-shelf-item-4 { transform: translateY(6px) rotate(4deg); z-index: 2; }
.bk-book-shelf-item-5 { transform: translateY(18px) rotate(10deg); z-index: 1; }

.bk-book-shelf-item:hover {
  transform: translateY(-14px) rotate(0deg) scale(1.06) !important;
  z-index: 10;
}

.bk-book-shelf-cover {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 18px 36px rgba(0,0,0,0.28),
    0 2px 0 rgba(255,255,255,0.35) inset;
  border: 2px solid rgba(255,255,255,0.55);
}

.bk-book-shelf-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bk-book-shelf-meta {
  margin-top: 10px;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: all .2s ease;
  pointer-events: none;
}

.bk-book-shelf-item:hover .bk-book-shelf-meta,
.bk-book-shelf-item-3 .bk-book-shelf-meta {
  opacity: 1;
  transform: translateY(0);
}

.bk-book-shelf-name {
  display: block;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  color: rgba(255,255,255,0.95);
  max-width: 110px;
  margin: 0 auto 2px;
}

.bk-book-shelf-price {
  display: inline-block;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.22);
  border-radius: 999px;
  padding: 2px 8px;
}

.bk-book-banner-tag {
  position: relative;
  z-index: 2;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  color: #e92530;
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.bk-book-banner-tag i { color: #ff5a5f; }

/* Category chips under banner */
.bk-book-banner-chips {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 14px 0;
  box-shadow: 0 8px 20px rgba(233,37,48,0.04);
  position: relative;
  z-index: 2;
}

.bk-book-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.bk-book-chips-row a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #333 !important;
  text-decoration: none !important;
  background: #fff5f5;
  border: 1px solid rgba(233,37,48,0.12);
  border-radius: 999px;
  padding: 9px 14px;
  transition: all .2s ease;
}

.bk-book-chips-row a i { color: #e92530; font-size: 12px; }

.bk-book-chips-row a:hover {
  background: #e92530;
  border-color: #e92530;
  color: #fff !important;
}

.bk-book-chips-row a:hover i { color: #fff; }

@media (max-width: 991px) {
  .bk-book-banner { padding: 36px 0 28px; }
  .bk-book-banner-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .bk-book-banner-copy > p { margin-left: auto; margin-right: auto; }
  .bk-book-banner-actions { justify-content: center; }
  .bk-book-banner-stats { margin: 0 auto; max-width: 100%; }
  .bk-book-banner-showcase { min-height: 280px; }
  .bk-book-shelf { max-width: 100%; min-height: 250px; }
  .bk-book-shelf-item { min-width: 64px; }
  .bk-book-shelf-item-3 { min-width: 78px; }
}

@media (max-width: 575px) {
  .bk-book-banner-copy h1 { font-size: 28px; }
  .bk-book-banner-copy > p { font-size: 14.5px; }
  .bk-book-btn-primary, .bk-book-btn-ghost { width: 100%; justify-content: center; }
  .bk-book-banner-actions { width: 100%; }
  .bk-book-stat strong { font-size: 15px; }
  .bk-book-shelf { gap: 6px; }
  .bk-book-shelf-item { min-width: 56px; width: 17%; }
  .bk-book-chips-row { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
  .bk-book-chips-row a { flex: 0 0 auto; }
}

/* =========================================================
   BOOK MODE — SHOP PAGE BANNER + FILTERS
   ========================================================= */
.bk-shop-book-banner {
  position: relative;
  overflow: hidden;
  padding: 42px 0 28px;
  color: #fff;
  isolation: isolate;
}
.bk-shop-book-banner-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, #6b0f1a 0%, #9b2226 30%, #e92530 65%, #ff6b6f 100%);
}
.bk-shop-book-banner-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,0.18), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(0,0,0,0.12), transparent 45%);
  pointer-events: none;
}
.bk-shop-book-banner-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}
.bk-shop-book-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 7px 12px;
  margin-bottom: 14px;
}
.bk-shop-book-banner-copy h1 {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.bk-shop-book-banner-copy p {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
  max-width: 520px;
  margin: 0 0 18px;
}
.bk-shop-book-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.bk-shop-book-btn,
.bk-shop-book-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 800;
  font-size: 14px;
  border-radius: 999px;
  padding: 11px 18px;
  text-decoration: none !important;
  transition: all .2s ease;
}
.bk-shop-book-btn {
  background: #fff;
  color: #e92530 !important;
  box-shadow: 0 10px 22px rgba(0,0,0,0.14);
}
.bk-shop-book-btn:hover { transform: translateY(-2px); color: #c9184a !important; }
.bk-shop-book-btn-outline {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff !important;
  background: rgba(255,255,255,0.08);
}
.bk-shop-book-btn-outline:hover {
  background: rgba(255,255,255,0.16);
  border-color: #fff;
}

.bk-shop-book-mini-shelf {
  position: relative;
  height: 210px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}
.bk-shop-book-mini {
  width: 78px;
  height: 118px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.55);
  box-shadow: 0 14px 28px rgba(0,0,0,0.25);
  background: #fff;
  transition: transform .2s ease;
}
.bk-shop-book-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bk-shop-book-mini-1 { transform: rotate(-8deg) translateY(10px); }
.bk-shop-book-mini-2 { transform: rotate(-3deg) translateY(2px); }
.bk-shop-book-mini-3 { transform: rotate(3deg) translateY(2px); }
.bk-shop-book-mini-4 { transform: rotate(8deg) translateY(10px); }
.bk-shop-book-mini:hover { transform: translateY(-8px) rotate(0) scale(1.05); z-index: 2; }

.bk-shop-book-crumbs {
  margin: 22px 0 0 !important;
  padding: 0 !important;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  justify-content: flex-start;
}
.bk-shop-book-crumbs li {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}
.bk-shop-book-crumbs li a {
  color: #fff !important;
  text-decoration: none !important;
  opacity: 0.95;
}
.bk-shop-book-crumbs li + li::before {
  content: "/";
  margin-right: 10px;
  opacity: 0.5;
}

/* Book sidebar filters */
body.bk-mode-book .shop-sidebar {
  background: #fff;
  border: 1px solid rgba(233,37,48,0.08);
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 10px 24px rgba(25,25,25,0.04);
}
body.bk-mode-book .shop-sidebar .widget-title h4 {
  font-family: "Nunito", system-ui, sans-serif !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #1a1a1a !important;
}
body.bk-mode-book #mobileFilterBtn {
  background: #e92530 !important;
  border-color: #e92530 !important;
}

.bk-book-cat-filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bk-book-cat-filter-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #333 !important;
  background: #faf7f7;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
  padding: 10px 12px;
  transition: all .18s ease;
}
.bk-book-cat-filter-list li a i {
  color: #e92530;
  width: 16px;
  text-align: center;
}
.bk-book-cat-filter-list li a em {
  margin-left: auto;
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
  color: #888;
  background: #fff;
  border-radius: 999px;
  padding: 2px 8px;
}
.bk-book-cat-filter-list li.is-active a,
.bk-book-cat-filter-list li a:hover {
  background: #e92530;
  border-color: #e92530;
  color: #fff !important;
}
.bk-book-cat-filter-list li.is-active a i,
.bk-book-cat-filter-list li a:hover i,
.bk-book-cat-filter-list li.is-active a em,
.bk-book-cat-filter-list li a:hover em {
  color: #fff;
}

.bk-book-price-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bk-book-price-chips a {
  display: inline-flex;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  color: #e92530 !important;
  text-decoration: none !important;
  background: #fff5f5;
  border: 1px solid rgba(233,37,48,0.15);
  border-radius: 999px;
  padding: 8px 12px;
  transition: all .18s ease;
}
.bk-book-price-chips a:hover {
  background: #e92530;
  color: #fff !important;
  border-color: #e92530;
}

body.bk-mode-book .shop-sidebar .search-widget input {
  border-radius: 12px !important;
  border: 1px solid rgba(233,37,48,0.15) !important;
  font-family: "Nunito", system-ui, sans-serif;
}

@media (max-width: 991px) {
  .bk-shop-book-banner-inner { grid-template-columns: 1fr; text-align: center; }
  .bk-shop-book-banner-copy p { margin-left: auto; margin-right: auto; }
  .bk-shop-book-banner-actions { justify-content: center; }
  .bk-shop-book-crumbs { justify-content: center; }
  .bk-shop-book-mini-shelf { height: 160px; }
  .bk-shop-book-mini { width: 62px; height: 94px; }
}

/* Book mode blog hero accent */
.bk-blog-hero-books {
  background: linear-gradient(120deg, #fff5f5 0%, #ffffff 55%, #fff8f6 100%) !important;
  border: 1px solid rgba(233,37,48,0.10);
}
body.bk-mode-book .bk-blog-hero {
  background: linear-gradient(120deg, #fff5f5 0%, #ffffff 55%, #fff8f6 100%);
  border-radius: 18px;
  border: 1px solid rgba(233,37,48,0.10);
}
body.bk-mode-book .bk-blog-hero h1 span { color: #e92530; }
