:root {
    --saffron: #FF6B00;
    --marigold: #FFB300;
    --lotus: #E8407A;
    --sky: #00B4D8;
    --leaf: #2DC653;
    --cream: #FFFBF0;
    --dark: #1A0A00;
    --soft: #FFF3DC;
    --krishna-blue: #3B5BDB;
    --hanuman-orange: #FF6B00;
    --ganesh-red: #C92A2A;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

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

html { scroll-behavior: smooth; }

section,
.hero,
.video-section,
footer {
  scroll-margin-top: 88px;
}

.home-scroll-anchor {
  display: block;
  height: 0;
  scroll-margin-top: 74px;
}

  body {
    background: var(--cream);
    font-family: 'Nunito', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
  }

  .skip-link {
    position: absolute;
    top: 12px;
    left: 16px;
    z-index: 10000;
    transform: translateY(-150%);
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--dark);
    color: white;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(26,10,0,0.22);
    transition: transform 0.18s ease;
  }

  .skip-link:focus,
  .skip-link:focus-visible {
    transform: translateY(0);
    outline: 3px solid var(--marigold);
    outline-offset: 3px;
  }

  #main-content:focus {
    outline: none;
  }

  a:focus-visible,
  button:focus-visible {
    outline: 3px solid rgba(0,180,216,0.85);
    outline-offset: 4px;
  }

  /* -- CONFETTI DOTS BACKGROUND -- */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      radial-gradient(circle, rgba(255,107,0,0.12) 2px, transparent 2px),
      radial-gradient(circle, rgba(232,64,122,0.10) 2px, transparent 2px),
      radial-gradient(circle, rgba(0,180,216,0.08) 2px, transparent 2px);
    background-size: 48px 48px, 72px 72px, 60px 60px;
    background-position: 0 0, 24px 24px, 12px 36px;
    pointer-events: none;
    z-index: 0;
  }

  /* -- NAV -- */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
  }

  nav {
    background: rgba(255,251,240,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--marigold);
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .amazon-search-marquee {
    position: relative;
    z-index: 90;
    overflow: hidden;
    background: linear-gradient(90deg, #fff2c8 0%, #fff9e9 50%, #fff2c8 100%);
    border-bottom: 1px solid rgba(255,179,0,0.38);
    color: #704500;
    font-family: 'Baloo 2', cursive;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: 0.25px;
    white-space: nowrap;
    min-height: 42px;
    display: flex;
    align-items: center;
    contain: paint;
    transform: translateZ(0);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
  }

  .amazon-search-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    padding: 10px 0 11px;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    transform-style: preserve-3d;
    animation: amazonSearchMarquee 52s linear infinite;
    will-change: transform;
  }

  .amazon-search-marquee-set {
    display: inline-flex;
    gap: 38px;
    padding-right: 38px;
  }

  .amazon-search-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    line-height: 1.5;
  }

  .amazon-search-marquee strong {
    color: var(--lotus);
  }

  .section-marquee {
    width: 100%;
    max-width: none;
    margin: 0;
    border-top: 1px solid rgba(255,179,0,0.42);
    border-bottom: 1px solid rgba(255,179,0,0.42);
    border-radius: 0;
  }

  @keyframes amazonSearchMarquee {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
  }

  @media (prefers-reduced-motion: reduce) {
    .amazon-search-marquee-track {
      animation: none;
      transform: none;
    }
  }

  .logo {
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    font-size: 22px;
    color: var(--saffron);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .logo::before {
    content: '';
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 50%;
    background: var(--cream) url("zippy-logo-mark.png") center / 92% no-repeat;
    border: 2px solid rgba(255, 179, 0, 0.72);
    box-shadow: 0 3px 10px rgba(26, 10, 0, 0.14);
  }

  .logo-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }

  .logo-subtitle {
    margin-top: 2px;
    font-family: 'Nunito', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #7A4B00;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
  }

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

  .nav-links .mobile-home-item {
    display: none;
  }

  .nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--saffron); }

  .nav-cta {
    background: var(--saffron);
    color: white !important;
    min-height: 40px;
    padding: 0 20px;
    border-radius: 100px;
    font-size: 13px !important;
    display: inline-flex;
    align-items: center;
    gap: 7px;
  }

  .nav-cart-icon {
    width: 16px;
    height: 16px;
    color: white;
    display: inline-flex;
    flex: 0 0 auto;
    margin-left: 1px;
  }

  .nav-cart-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    stroke: currentColor;
    stroke-width: 2.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .nav-cta:hover { background: var(--lotus); color: white !important; }

  .mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(255, 171, 0, 0.38);
    border-radius: 14px;
    background: rgba(255, 250, 240, 0.96);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(43, 20, 0, 0.1);
    transition: border-color 0.2s ease, background 0.2s ease;
  }

  .mobile-menu-toggle span {
    width: 21px;
    height: 2.5px;
    border-radius: 999px;
    background: var(--dark);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .mobile-menu-toggle[aria-expanded="true"] {
    border-color: rgba(255, 107, 0, 0.55);
    background: #fff4df;
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  /* -- HERO -- */
  .hero {
    position: relative;
    z-index: 1;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 40px 60px;
  }

  .hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: clamp(90px, 12vw, 160px);
    background: linear-gradient(to bottom, rgba(255,251,240,0), rgba(255,251,240,0.72) 58%, var(--cream));
    pointer-events: none;
    z-index: 1;
  }

  .hero-bg-blob {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
  }

  .blob1 {
    width: 500px; height: 500px;
    background: rgba(255,179,0,0.18);
    top: -100px; left: -100px;
    animation: float1 8s ease-in-out infinite;
  }

  .blob2 {
    width: 400px; height: 400px;
    background: rgba(232,64,122,0.14);
    bottom: -80px; right: -80px;
    animation: float2 10s ease-in-out infinite;
  }

  .blob3 {
    width: 300px; height: 300px;
    background: rgba(0,180,216,0.12);
    top: 40%; left: 55%;
    animation: float1 12s ease-in-out infinite reverse;
  }

  @keyframes float1 {
    0%, 100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
  }

  @keyframes float2 {
    0%, 100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(-20px, 20px) scale(1.08); }
  }

  .hero-content {
    max-width: 580px;
    position: relative;
    z-index: 2;
    animation: fadeUp 0.8s ease both;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes heroVisualIn {
    from { opacity: 0; transform: translateY(calc(-50% + 28px)); }
    to { opacity: 1; transform: translateY(-50%); }
  }

  /* -- BOUNCY POP-IN (book & video cards) -- */
  @keyframes popIn {
    0%   { opacity: 0; transform: scale(0.7) translateY(30px); }
    60%  { opacity: 1; transform: scale(1.06) translateY(-6px); }
    80%  { transform: scale(0.97) translateY(2px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
  }

  /* -- SMOOTH SLIDE-UP (text / eyebrow / headings) -- */
  @keyframes slideUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* -- WIGGLE (CTA buttons on load) -- */
  @keyframes wiggle {
    0%,100% { transform: rotate(0deg); }
    20%     { transform: rotate(-4deg) scale(1.05); }
    40%     { transform: rotate(4deg)  scale(1.05); }
    60%     { transform: rotate(-2deg); }
    80%     { transform: rotate(2deg); }
  }

  /* -- CONTINUOUS FLOAT (hero book visuals) -- */
  @keyframes bookFloat {
    0%,100% { transform: translateY(0px) rotate(0deg); }
    33%     { transform: translateY(-10px) rotate(1.5deg); }
    66%     { transform: translateY(-5px) rotate(-1deg); }
  }

  /* -- SHIMMER SWEEP (hero book covers) -- */
  @keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
  }

  /* -- BADGE BOUNCE -- */
  @keyframes badgeBounce {
    0%   { opacity: 0; transform: scale(0) rotate(-8deg); }
    60%  { transform: scale(1.15) rotate(3deg); }
    80%  { transform: scale(0.95) rotate(-1deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
  }

  /* -- STARBURST PULSE (available badge) -- */
  @keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(45,198,83,0.5); }
    50%     { box-shadow: 0 0 0 6px rgba(45,198,83,0); }
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--soft);
    border: 2px solid var(--marigold);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--saffron);
    margin-bottom: 24px;
    animation: badgeBounce 0.7s 0.2s ease both;
  }

  h1 {
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    font-size: clamp(40px, 6.4vw, 74px);
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 20px;
    animation: fadeUp 0.8s 0.2s ease both;
  }

  h1 .highlight-saffron { color: var(--saffron); }
  h1 .highlight-lotus { color: var(--lotus); }

  .hero-sub {
    font-size: 18px;
    color: #5C3A00;
    line-height: 1.7;
    margin-bottom: 36px;
    font-weight: 400;
    animation: fadeUp 0.8s 0.3s ease both;
    max-width: 460px;
  }

  .hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.4s ease both;
  }

  .btn-primary {
    background: var(--saffron);
    color: white;
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(255,107,0,0.35);
    opacity: 1;
    animation: wiggle 0.6s 1.4s ease both;
  }

  .hero-cta-label-mobile {
    display: none;
  }

  .hero-cart-icon {
    width: 17px;
    height: 17px;
    color: white;
    display: inline-flex;
    flex: 0 0 auto;
  }

  .hero-cart-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    stroke: currentColor;
    stroke-width: 2.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .btn-primary:hover {
    background: #E55A00;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255,107,0,0.4);
  }

  .btn-secondary {
    background: white;
    color: var(--dark);
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    border: 2px solid #E8D5B0;
    transition: all 0.2s;
  }

  .btn-secondary:hover {
    border-color: var(--saffron);
    color: var(--saffron);
  }

  /* HERO VISUAL */
  .hero-visual {
    position: absolute;
    right: clamp(52px, 5.4vw, 112px);
    top: 57%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    gap: 24px;
    align-items: center;
    animation: heroVisualIn 0.8s 0.5s ease both;
  }

  .hero-book-stack {
    display: flex;
    flex-direction: column;
    gap: 52px;
  }

  .hero-book-stack:nth-child(2) {
    transform: translateY(34px);
  }

  .hero-book {
    width: 190px;
    height: 246px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 36px rgba(26,10,0,0.18);
    transition: transform 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: bookFloat 4s ease-in-out infinite;
    background: #f0f0f0;
    color: inherit;
    text-decoration: none;
  }

  .hero-book img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: 14px;
  }

  .hero-book::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
    background-size: 200% 100%;
    animation: shimmer 3.5s ease-in-out infinite;
    pointer-events: none;
    border-radius: 12px;
  }

  .hero-book:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 4px;
  }

  .hero-book:nth-child(1) { animation-delay: 0s; }
  .hero-book:nth-child(2) { animation-delay: 0.8s; }

  .hero-book-label {
    font-family: 'Baloo 2', cursive;
    font-size: 11px;
    font-weight: 700;
    color: white;
    margin-top: 8px;
    text-align: center;
    padding: 0 8px;
    line-height: 1.3;
  }

  .hb1 { background: linear-gradient(135deg, #FF6B00, #FFB300); }
  .hb2 { background: linear-gradient(135deg, #3B5BDB, #00B4D8); }
  .hb3 { background: linear-gradient(135deg, #E8407A, #FF6B00); }
/* -- SECTION SHARED -- */
  section {
    position: relative;
    z-index: 1;
    padding: 80px 40px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 12px;
  }
  .books-page-section h1,
  h2 {
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 14px;
  }

  .section-intro {
    font-size: 17px;
    color: #5C3A00;
    max-width: 580px;
    line-height: 1.7;
    margin-bottom: 52px;
  }

  /* -- BOOKS GRID -- */
  .books-section { background: transparent; }

  .books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(176px, 1fr));
    gap: 20px 18px;
  }

  @media (min-width: 769px) {
    .books-grid {
      align-items: stretch;
    }

    .book-card {
      border-radius: 16px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }

    .book-cover {
      aspect-ratio: 1 / 1.18;
      padding: 8px;
      border-radius: 14px;
    }

    .book-cover img {
      object-fit: contain;
      border-radius: 10px;
      background: white;
    }

    .book-body {
      padding: 12px 10px 14px;
      align-items: center;
      text-align: center;
    }

    .book-body h2,
    .book-body h3 {
      font-family: 'Nunito', sans-serif;
      font-size: 14px;
      font-weight: 800;
      line-height: 1.25;
      min-height: 52px;
      margin-bottom: 8px;
    }

    .book-body p,
    .book-body .available-badge {
      display: none;
    }

    .book-price {
      font-family: 'Nunito', sans-serif;
      font-size: 20px;
      margin: 0 0 10px;
    }

    .book-cta {
      width: 100%;
      max-width: 176px;
      min-height: 46px;
      padding: 11px 16px;
      gap: 8px;
      font-size: 15px;
      border-radius: 12px;
      box-sizing: border-box;
    }

    .book-cta .cart-icon {
      width: 17px;
      height: 17px;
    }

    .coming-soon-card .book-price {
      font-size: 17px;
    }

    .book-gift-card {
      min-height: 100%;
      border-radius: 16px !important;
      padding: 22px 14px !important;
    }
  }

  @media (max-width: 980px) and (min-width: 769px) {
    .hero-content { max-width: 500px; }
    .hero-visual {
      right: 24px;
      gap: 12px;
      top: 50%;
    }
    .hero-book-stack {
      gap: 12px;
    }
    .hero-book-stack:nth-child(2) {
      transform: translateY(18px);
    }
    .hero-book {
      width: 104px;
      height: 136px;
    }
  }

  @media (min-width: 981px) and (max-height: 760px) {
    .hero {
      min-height: 620px;
      padding: 56px 40px 48px;
    }

    .hero-content {
      max-width: 540px;
    }

    .hero-badge {
      margin-bottom: 16px;
    }

    h1 {
      font-size: clamp(38px, 5vw, 60px);
      margin-bottom: 14px;
    }

    .hero-sub {
      max-width: 430px;
      font-size: 16px;
      line-height: 1.55;
      margin-bottom: 24px;
    }

    .hero-visual {
      right: clamp(42px, 5vw, 78px);
      top: 50%;
      gap: 18px;
    }

    .hero-book-stack {
      gap: 28px;
    }

    .hero-book-stack:nth-child(2) {
      transform: translateY(22px);
    }

    .hero-book {
      width: clamp(142px, 12vw, 164px);
      height: clamp(184px, 15.5vw, 212px);
    }
  }

  @media (orientation: portrait) and (min-width: 769px) and (max-width: 1100px) {
    .hero {
      min-height: auto;
      align-items: flex-start;
      padding: 150px 40px 120px;
    }
    .hero-content {
      max-width: 520px;
    }
    .hero-visual {
      right: 54px;
      top: 50%;
      gap: 14px;
    }
    .hero-book-stack {
      gap: 18px;
    }
    .hero-book-stack:nth-child(2) {
      transform: translateY(24px);
    }
    .hero-book {
      width: 118px;
      height: 153px;
    }
  }

  @media (max-width: 768px) {
    section,
    .hero,
    .video-section,
    footer {
      scroll-margin-top: 136px;
    }

    .home-scroll-anchor {
      scroll-margin-top: 136px;
    }

    .books-grid { grid-template-columns: 1fr 1fr; }
    nav {
      justify-content: center;
      padding: 16px 20px;
    }

    nav .logo {
      width: 100%;
      min-height: 48px;
      justify-content: center;
      gap: 0;
      padding: 0 58px;
      position: relative;
      text-align: center;
    }

    nav .logo::before {
      position: absolute;
      left: 0;
      top: 50%;
      width: 42px;
      height: 42px;
      flex-basis: 42px;
      transform: translateY(-50%);
    }

    nav .logo-copy {
      align-items: center;
      min-width: 0;
    }

    nav .logo-copy > span:first-child {
      font-size: 20px;
      line-height: 0.95;
      white-space: nowrap;
    }

    nav .logo-subtitle {
      font-size: 9.5px;
      letter-spacing: 1.5px;
      white-space: nowrap;
    }

    .mobile-menu-toggle {
      display: inline-flex;
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 1002;
    }

    nav .nav-links {
      display: none;
      position: absolute;
      top: calc(100% + 10px);
      left: 16px;
      right: 16px;
      z-index: 1001;
      flex-direction: column;
      align-items: stretch;
      gap: 8px;
      padding: 14px;
      background: rgba(255, 252, 242, 0.98);
      border: 1.5px solid rgba(255, 171, 0, 0.34);
      border-radius: 18px;
      box-shadow: 0 18px 40px rgba(43, 20, 0, 0.16);
    }

    nav .nav-links.mobile-open {
      display: flex;
    }

    nav .nav-links li {
      width: 100%;
      justify-content: center;
    }

    nav .nav-links .mobile-home-item {
      display: flex;
    }

    nav .nav-links a {
      width: 100%;
      justify-content: center;
      min-height: 42px;
      padding: 0 14px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.7);
    }

    nav .nav-links a:not(.nav-cta) {
      border: 1px solid rgba(255, 171, 0, 0.18);
    }

    nav .nav-links .nav-cta {
      background: var(--saffron);
      border: 1px solid rgba(255, 107, 0, 0.55);
      color: #fff !important;
      margin-top: 4px;
      min-height: 44px;
      box-shadow: 0 8px 18px rgba(255, 107, 0, 0.22);
    }

    .amazon-search-marquee {
      font-size: 12.5px;
      min-height: 38px;
    }
    .amazon-search-marquee-track {
      animation-duration: 21s;
      padding: 9px 0 10px;
    }
    .amazon-search-marquee-set {
      gap: 28px;
      padding-right: 28px;
    }
    .hero-cta-label-desktop {
      display: none;
    }
    .hero-cta-label-mobile {
      display: inline;
    }
    .hero {
      min-height: auto;
      flex-direction: column;
      align-items: flex-start;
      padding: 64px 20px 28px;
    }
    .hero-content,
    .hero-sub {
      max-width: 100%;
    }
    .hero-visual {
      position: relative;
      right: auto;
      top: auto;
      transform: none;
      animation: fadeUp 0.8s 0.5s ease both;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      width: 100%;
      max-width: 360px;
      margin: 34px auto 0;
      padding: 16px;
      overflow: visible;
      background: rgba(255, 255, 255, 0.82);
      border: 1px solid rgba(232, 213, 176, 0.95);
      border-radius: 20px;
      box-shadow: 0 16px 42px rgba(26, 10, 0, 0.10);
      backdrop-filter: blur(8px);
    }
    .hero-visual::-webkit-scrollbar {
      display: none;
    }
    .hero-visual::before {
      content: 'Available Coloring Books';
      grid-column: 1 / -1;
      font-family: 'Baloo 2', cursive;
      font-size: 18px;
      font-weight: 800;
      line-height: 1;
      color: var(--dark);
      text-align: center;
      padding-bottom: 2px;
    }
    .hero-book-stack {
      display: contents;
      margin-top: 0 !important;
      transform: none !important;
    }
    .hero-book {
      width: 100%;
      height: auto;
      aspect-ratio: 13 / 17;
      border-radius: 14px;
      box-shadow: 0 10px 24px rgba(26, 10, 0, 0.14);
      background: #fff;
    }
    .hero-book img,
    .hero-book::after {
      border-radius: 14px;
    }
}

  @media (max-width: 480px) {
    .books-grid { grid-template-columns: 1fr; }
    .hero { padding: 56px 20px 44px; }
    .hero h1 { font-size: clamp(32px, 10.6vw, 45px); }
    .hero-sub { font-size: 16px; }
    .hero-btns {
      flex-direction: row;
      flex-wrap: nowrap;
      gap: 10px;
    }
    .btn-primary,
    .btn-secondary {
      justify-content: center;
      width: auto;
      min-width: 0;
      flex: 1 1 0;
      font-size: 13px;
      padding: 10px 14px;
      white-space: nowrap;
    }
    .hero-cart-icon {
      width: 15px;
      height: 15px;
    }
    .hero-visual {
      gap: 12px;
      padding: 14px;
    }
section { padding: 60px 20px; }
  }

  @media (max-width: 380px) {
    nav .logo {
      padding: 0 52px;
    }

    nav .logo::before {
      width: 38px;
      height: 38px;
      flex-basis: 38px;
    }

    nav .logo-copy > span:first-child {
      font-size: 18px;
    }

    nav .logo-subtitle {
      font-size: 8.5px;
      letter-spacing: 1.25px;
    }
  }

  @media (orientation: landscape) and (min-width: 769px) and (max-width: 940px) and (max-height: 520px) {
    section,
    .hero,
    .video-section,
    footer {
      scroll-margin-top: 72px;
    }

    .home-scroll-anchor {
      scroll-margin-top: 72px;
    }

    nav {
      padding: 10px 24px;
      gap: 18px;
    }

    .logo {
      font-size: 20px;
      gap: 8px;
      flex-shrink: 0;
    }

    .logo::before {
      width: 34px;
      height: 34px;
      flex-basis: 34px;
    }

    .logo-subtitle {
      font-size: 9px;
      letter-spacing: 1.1px;
    }

    .nav-links {
      flex: 1;
      justify-content: flex-end;
      gap: 18px;
    }

    .nav-links a:not(.nav-cta) {
      min-height: 34px;
      font-size: 13px;
      line-height: 1.15;
      white-space: nowrap;
    }

    .nav-cta {
      min-height: 38px;
      max-width: 160px;
      padding: 0 16px;
      font-size: 12px !important;
      line-height: 1.12;
      justify-content: center;
    }

    .hero {
      min-height: calc(100svh - 58px);
      align-items: center;
      padding: 42px 28px 24px;
    }

    .hero-content {
      max-width: min(57vw, 470px);
    }

    .hero-badge {
      font-size: 12px;
      padding: 5px 14px;
      margin-bottom: 16px;
    }

    h1 {
      font-size: clamp(34px, 5.8vw, 48px);
      line-height: 1.08;
      margin-bottom: 14px;
    }

    .hero-sub {
      max-width: 420px;
      font-size: 14px;
      line-height: 1.45;
      margin-bottom: 20px;
    }

    .hero-btns {
      gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
      font-size: 14px;
      padding: 10px 22px;
    }

    .hero-visual {
      right: 28px;
      top: 57%;
      gap: 14px;
    }

    .hero-book-stack {
      gap: 16px;
    }

    .hero-book-stack:nth-child(2) {
      transform: translateY(18px);
    }

    .hero-book {
      width: clamp(94px, 13vw, 116px);
      height: clamp(122px, 16.8vw, 150px);
      border-radius: 10px;
      box-shadow: 0 10px 24px rgba(26,10,0,0.16);
    }

    .hero-book img,
    .hero-book::after {
      border-radius: 10px;
    }
  }

  .book-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .book-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    border-color: var(--marigold);
  }

  .book-cover {
    aspect-ratio: 520 / 673;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 12px;
  }

  .book-cover-link {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
  }

  .book-cover-link:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 4px;
  }

  .book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
  }

  .book-card:hover .book-cover img {
    transform: scale(1.03);
  }

  /* Soft background colors per book theme */
  .bc-hinduGods { background: linear-gradient(145deg, #C8E6C9, #A5D6A7); }
  .bc-krishna   { background: linear-gradient(145deg, #BBDEFB, #90CAF9); }
  .bc-hanuman   { background: linear-gradient(145deg, #FFE0B2, #FFCC80); }
  .bc-ganesh    { background: linear-gradient(145deg, #F8BBD9, #F48FB1); }
  .bc-rama      { background: linear-gradient(145deg, #E1BEE7, #CE93D8); }
  .bc-buddha    { background: linear-gradient(145deg, #FFE7A8, #FFBF69); }
  .bc-murugan   { background: linear-gradient(145deg, #D6F5D6, #8FD19E); }
  .bc-shiva     { background: linear-gradient(145deg, #D9ECFF, #9DC8FF); }

  .book-cover-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background:
      radial-gradient(circle at 18% 78%, rgba(45,198,83,0.18), transparent 18%),
      radial-gradient(circle at 82% 72%, rgba(232,64,122,0.18), transparent 18%),
      linear-gradient(180deg, #fff 0%, #fffaf0 100%);
    border: 2px solid rgba(255,255,255,0.95);
    box-shadow: 0 8px 18px rgba(26,10,0,0.08);
    display: grid;
    grid-template-rows: auto 1fr auto;
    align-items: center;
    justify-items: center;
    padding: 16px 14px;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .book-cover-placeholder-simple {
    grid-template-rows: 1fr auto;
  }

  .coming-soon-card .book-cover-placeholder::before {
    content: "COMING SOON";
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, #FF8A1F, #FF6B00);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
  }

  .placeholder-book-title {
    font-family: 'Baloo 2', cursive;
    font-size: clamp(22px, 2.2vw, 31px);
    font-weight: 800;
    line-height: 0.95;
    color: #D00000;
    margin-top: 26px;
  }

  .placeholder-book-subtitle {
    font-family: 'Baloo 2', cursive;
    font-size: clamp(11px, 1vw, 15px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
  }

  .placeholder-book-subtitle span {
    display: inline-block;
    margin-left: 4px;
    padding: 2px 7px;
    border-radius: 4px;
    background: #073BD7;
    color: white;
  }

  .placeholder-character {
    font-size: clamp(58px, 7vw, 92px);
    line-height: 1;
    filter: drop-shadow(0 8px 12px rgba(26,10,0,0.16));
  }

  .placeholder-book-note {
    color: #8B6A3A;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
  }

  .vol-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.95);
    color: var(--dark);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  }

  .coming-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #FF8A1F, #FF6B00);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    z-index: 3;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(255,107,0,0.28);
  }

  .book-body .coming-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    position: static;
    margin: 2px 0 10px;
  }

  .available-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    position: static;
    background: var(--leaf);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 2px 0 10px;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(45,198,83,0.3);
  }

  .book-body {
    padding: 20px;
    display: flex;
    flex: 1;
    flex-direction: column;
  }

  .book-body h2,
  .book-body h3 {
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.3;
  }

  .book-body p {
    font-size: 13px;
    color: #8B6A3A;
    margin-bottom: 16px;
    line-height: 1.5;
    flex: 1;
  }

  .book-price {
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    font-size: 24px;
    line-height: 1;
    color: var(--saffron);
    margin: 10px 0 12px;
  }

  .book-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-align: center;
    width: 100%;
    max-width: 176px;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 12px;
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s;
    margin-top: auto;
  }

  .cart-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    color: var(--dark);
    flex: 0 0 auto;
  }

  .cart-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    stroke: currentColor;
    stroke-width: 2.4;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .cta-amazon,
  .cta-product {
    background: var(--marigold);
    color: var(--dark);
  }

  .book-cta.cta-product {
    box-shadow: 0 8px 18px rgba(255, 107, 0, 0.18);
  }

  .cta-amazon:hover,
  .cta-product:hover {
    background: #E5A000;
    transform: translateY(-1px);
  }

  .cta-coming {
    background: #F0F0F0;
    color: #999;
    cursor: default;
    pointer-events: none;
  }

  .cta-notify {
    background: #F3F0EA;
    color: #7A5420;
  }

  .cta-notify:hover {
    background: #FFE7B8;
    color: var(--dark);
  }

  @media (max-width: 768px) {
    #books {
      padding-left: 0;
      padding-right: 0;
      overflow: hidden;
    }
    #books > .reveal {
      padding: 0 20px;
    }
    #books .section-intro {
      margin-bottom: 28px;
    }
    .books-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 28px 14px;
      overflow: visible;
      scroll-snap-type: none;
      padding: 4px 14px 18px;
      margin: 0;
    }
    .book-card {
      min-width: 0;
      max-width: none;
      min-height: 0;
      border: 0;
      border-radius: 18px;
      box-shadow: none;
      overflow: visible;
      background: transparent;
    }
    .book-card:hover {
      transform: none;
      box-shadow: none;
      border-color: transparent;
    }
    .book-cover {
      aspect-ratio: 1 / 1.18;
      padding: 8px;
      border-radius: 16px;
      background: #fff;
      box-shadow: 0 8px 22px rgba(26,10,0,0.08);
    }
    .book-cover.bc-hinduGods {
      background: linear-gradient(145deg, #C8E6C9, #8FD19E);
    }
    .book-cover.bc-rama {
      background: linear-gradient(145deg, #E1BEE7, #C589D9);
    }
    .book-cover img {
      object-fit: contain;
      border-radius: 10px;
      background: white;
    }
    .book-cover-placeholder {
      border-radius: 10px;
      padding: 12px 8px;
    }
    .coming-soon-card .book-cover-placeholder::before {
      top: 8px;
      right: 8px;
      font-size: 8px;
      padding: 4px 7px;
      letter-spacing: 0.5px;
    }
    .placeholder-book-title {
      font-size: clamp(18px, 5vw, 23px);
      margin-top: 20px;
    }
    .placeholder-book-subtitle {
      font-size: 10px;
    }
    .placeholder-book-subtitle span {
      padding: 2px 5px;
    }
    .placeholder-character {
      font-size: clamp(42px, 14vw, 62px);
    }
    .placeholder-book-note {
      font-size: 9px;
      letter-spacing: 0.5px;
    }
    .book-body {
      padding: 10px 2px 0;
      align-items: center;
      text-align: center;
    }
    .book-body h2,
    .book-body h3 {
      font-family: 'Nunito', sans-serif;
      font-size: 16px;
      font-weight: 700;
      line-height: 1.3;
      color: #4A4038;
      min-height: 62px;
      margin-bottom: 6px;
    }
    .book-body p,
    .book-body .available-badge {
      display: none;
    }
    .book-price {
      color: var(--saffron);
      font-family: 'Nunito', sans-serif;
      font-size: 24px;
      font-weight: 800;
      margin: 0 0 9px;
    }
    .book-cta {
      min-height: 46px;
      width: 100%;
      max-width: 168px;
      border-radius: 12px;
      gap: 8px;
      padding: 10px 12px;
      font-size: 14px;
      box-shadow: 0 7px 16px rgba(255,107,0,0.18);
    }
    .book-cta .cart-icon {
      width: 16px;
      height: 16px;
    }
    .coming-soon-card .book-price {
      font-size: 18px;
      margin-bottom: 9px;
    }
    .coming-soon-card .book-cta {
      box-shadow: none;
    }
    .book-gift-card {
      grid-column: auto;
      min-height: 100%;
      margin: 0;
      border-radius: 18px !important;
      overflow: hidden;
      padding: 20px 14px !important;
    }
    .book-gift-card h3 {
      font-size: 14px !important;
      line-height: 1.2;
    }
    .book-gift-card p {
      font-size: 11.5px !important;
      line-height: 1.35;
      margin-bottom: 0;
    }
    .book-gift-card a {
      font-size: 12px !important;
    }
  }

  /* BOOK COLORS */
  .bc-vol1 { background: linear-gradient(135deg, #FF6B00 0%, #FFB300 100%); }
  .bc-vol2 { background: linear-gradient(135deg, #FF8C42 0%, #FFCB69 100%); }
  .bc-krishna { background: linear-gradient(135deg, #3B5BDB 0%, #74C0FC 100%); }
  .bc-hanuman { background: linear-gradient(135deg, #E8407A 0%, #FF6B6B 100%); }
  .bc-ganesh { background: linear-gradient(135deg, #C92A2A 0%, #FF8787 100%); }

  /* PRODUCT PAGES */
  .product-page-section {
    display: none;
    padding: 0 40px 92px;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }

  .product-page-section.is-active-product {
    display: block;
  }

  body.product-page-mode .home-only {
    display: none !important;
  }

  body.product-page-mode .product-page-section {
    padding-top: 34px;
  }

  .product-page-section [tabindex="-1"]:focus {
    outline: none;
  }

  .product-page-shell {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    background:
      radial-gradient(circle at 8% 12%, rgba(255,179,0,0.18), transparent 24%),
      radial-gradient(circle at 88% 74%, rgba(232,64,122,0.12), transparent 25%),
      radial-gradient(circle at 64% 44%, rgba(0,180,216,0.10), transparent 20%),
      rgba(255,251,240,0.72);
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
  }

  .product-home-corner {
    position: absolute;
    top: 0;
    right: max(0px, calc((100% - 1140px) / 2));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--saffron), #FF4B00);
    color: white;
    font-family: 'Baloo 2', cursive;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(255,107,0,0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .product-home-corner:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(255,107,0,0.28);
  }

  .product-breadcrumb {
    position: static;
    top: auto;
    z-index: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 auto 34px;
    padding: 0 130px 0 0;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
    max-width: 1140px;
    font-size: 15px;
    font-weight: 600;
    color: #8B6A3A;
  }

  .product-breadcrumb a {
    color: var(--dark);
    text-decoration: none;
  }

  .product-breadcrumb a:hover {
    color: var(--saffron);
  }

  .blog-page-shell {
    max-width: 1180px;
  }

  .blog-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
    gap: clamp(22px, 4vw, 42px);
    align-items: stretch;
    max-width: 1140px;
    margin: 0 auto;
  }

  .blog-hero-panel,
  .blog-side-panel,
  .blog-card,
  .blog-article {
    background:
      radial-gradient(circle at 12% 18%, rgba(255,179,0,0.12), transparent 28%),
      radial-gradient(circle at 90% 82%, rgba(232,64,122,0.10), transparent 26%),
      rgba(255,255,255,0.82);
    border: 1px solid rgba(255,179,0,0.22);
    box-shadow: 0 16px 36px rgba(92,58,0,0.08);
  }

  .blog-hero-panel {
    border-radius: 30px;
    padding: clamp(26px, 4vw, 42px);
  }

  .blog-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--saffron);
    border: 2px solid rgba(255,179,0,0.38);
    background: rgba(255,251,240,0.72);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 18px;
  }

  .blog-hero-panel h1,
  .blog-article h1 {
    color: var(--dark);
    font-size: clamp(38px, 6vw, 66px);
    line-height: 1;
    margin-bottom: 18px;
    text-align: left;
  }

  .blog-hero-panel h1 span,
  .blog-article h1 span {
    color: var(--lotus);
  }

  .blog-hero-panel p,
  .blog-article p,
  .blog-article li {
    color: #5b4328;
    font-size: clamp(17px, 1.55vw, 20px);
    line-height: 1.62;
  }

  .blog-side-panel {
    border-radius: 30px;
    padding: clamp(22px, 3vw, 34px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .blog-side-panel h2 {
    color: var(--dark);
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.1;
    text-align: left;
    margin-bottom: 16px;
  }

  .blog-side-list {
    display: grid;
    gap: 12px;
  }

  .blog-side-list span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,251,240,0.78);
    border: 1px solid rgba(232,213,176,0.78);
    color: #4d351c;
    font-weight: 800;
  }

  .blog-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1140px;
    margin: 28px auto 0;
  }

  .blog-card {
    border-radius: 22px;
    padding: 24px;
    min-height: 270px;
    display: flex;
    flex-direction: column;
  }

  .blog-card small {
    color: var(--lotus);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
  }

  .blog-card h2 {
    color: var(--dark);
    font-size: clamp(24px, 2.2vw, 31px);
    line-height: 1.08;
    text-align: left;
    margin-bottom: 12px;
  }

  .blog-card p {
    color: #5b4328;
    font-size: 16px;
    line-height: 1.52;
    margin-bottom: 18px;
  }

  .blog-listing-hero {
    max-width: 1140px;
    margin: 0 auto 24px;
  }

  .blog-listing-hero h1 {
    color: var(--dark);
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.02;
    margin-bottom: 16px;
    text-align: left;
  }

  .blog-listing-hero h1 span {
    color: var(--lotus);
  }

  .blog-listing-hero p {
    max-width: 760px;
    color: #5b4328;
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.55;
  }

  .blog-list-card {
    min-height: auto;
    overflow: hidden;
    padding: 0;
  }

  .blog-card-media {
    aspect-ratio: 16 / 9;
    background: #fff;
    border-bottom: 1px solid rgba(255,179,0,0.22);
    overflow: hidden;
  }

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

  .blog-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
  }

  .blog-meta,
  .blog-article-meta {
    color: #7a5831;
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 900;
    gap: 8px 16px;
    margin-bottom: 14px;
  }

  .blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: auto 0 18px;
  }

  .blog-tags span {
    background: rgba(236,58,125,0.1);
    border: 1px solid rgba(236,58,125,0.2);
    border-radius: 999px;
    color: var(--lotus);
    font-size: 13px;
    font-weight: 900;
    padding: 7px 10px;
  }

  .blog-pagination {
    color: #7a5831;
    font-weight: 900;
    margin: 24px auto 0;
    max-width: 1140px;
    text-align: center;
  }

  .blog-card a,
  .blog-action-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-top: auto;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--saffron), #FF4B00);
    color: white;
    font-family: 'Baloo 2', cursive;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(255,107,0,0.18);
  }

  .blog-article {
    max-width: 920px;
    margin: 0 auto;
    border-radius: 30px;
    padding: clamp(26px, 5vw, 52px);
  }

  .blog-article h2 {
    color: var(--dark);
    font-size: clamp(27px, 3vw, 38px);
    line-height: 1.12;
    text-align: left;
    margin: 30px 0 12px;
  }

  .blog-article h3 {
    color: var(--lotus);
    font-size: clamp(21px, 2.2vw, 28px);
    line-height: 1.15;
    margin: 24px 0 8px;
  }

  .blog-article ul {
    margin: 14px 0 0 22px;
  }

  .blog-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
  }

  .blog-action-row a.secondary {
    background: rgba(255,255,255,0.82);
    color: var(--dark);
    border: 1px solid rgba(232,213,176,0.95);
    box-shadow: none;
  }

  .blog-featured-figure {
    background: linear-gradient(135deg, rgba(255,244,207,0.9), rgba(255,255,255,0.94));
    border: 1px solid rgba(255,179,0,0.24);
    border-radius: 24px;
    margin: 26px 0;
    overflow: hidden;
    text-align: center;
  }

  .blog-featured-figure img {
    aspect-ratio: 16 / 9;
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
  }

  .blog-featured-figure figcaption {
    background: rgba(255,255,255,0.72);
    color: #7a5831;
    font-size: 14px;
    font-weight: 800;
    padding: 12px 16px;
  }

  .blog-featured-link {
    color: inherit;
    display: block;
    text-decoration: none;
  }

  .blog-article p a,
  .blog-article li a {
    color: var(--lotus);
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: rgba(232,64,122,0.72);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }

  .blog-article p a:hover,
  .blog-article p a:focus-visible,
  .blog-article li a:hover,
  .blog-article li a:focus-visible {
    color: #C92F67;
    text-decoration-color: currentColor;
  }

  .blog-comparison-table-wrap {
    border: 1px solid rgba(255,179,0,0.24);
    border-radius: 20px;
    margin: 22px 0 26px;
    overflow-x: auto;
    background: rgba(255,255,255,0.7);
  }

  .blog-comparison-table {
    border-collapse: collapse;
    min-width: 760px;
    width: 100%;
  }

  .blog-comparison-table th,
  .blog-comparison-table td {
    border-bottom: 1px solid rgba(232,213,176,0.78);
    color: #5b4328;
    font-size: 15px;
    line-height: 1.45;
    padding: 13px 14px;
    text-align: left;
    vertical-align: top;
  }

  .blog-comparison-table th {
    background: rgba(255,179,0,0.12);
    color: var(--dark);
    font-weight: 900;
    white-space: nowrap;
  }

  .blog-comparison-table tr:last-child td {
    border-bottom: 0;
  }

  .blog-book-picker {
    align-items: start;
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 26px 0 30px;
  }

  .blog-book-pick {
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(255,179,0,0.26);
    border-radius: 18px;
    color: var(--dark);
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start;
    padding: 14px;
    text-align: center;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
  }

  .blog-book-pick:hover,
  .blog-book-pick:focus-visible {
    border-color: var(--lotus);
    color: var(--lotus);
    transform: translateY(-2px);
  }

  .blog-book-pick img {
    aspect-ratio: 8.5 / 11;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(52,29,0,0.12);
    display: block;
    height: clamp(150px, 18vw, 220px);
    object-fit: contain;
    object-position: center;
    width: 100%;
  }

  .blog-book-pick strong {
    font-size: 14px;
    line-height: 1.2;
  }

  .blog-before-after {
    background:
      radial-gradient(circle at 12% 14%, rgba(255,179,0,0.12), transparent 28%),
      linear-gradient(135deg, rgba(255,251,240,0.9), rgba(255,255,255,0.86));
    border: 1px solid rgba(255,179,0,0.25);
    border-radius: 24px;
    margin: 28px 0 32px;
    padding: clamp(18px, 3vw, 28px);
  }

  .blog-before-after h3 {
    color: var(--dark);
    margin-top: 0;
    text-align: center;
  }

  .blog-before-after p {
    margin: 0 auto 20px;
    max-width: 660px;
    text-align: center;
  }

  .blog-before-after-grid {
    align-items: center;
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 280px) 42px minmax(0, 280px);
    justify-content: center;
  }

  .blog-before-after-card {
    background: white;
    border: 1px solid rgba(232,213,176,0.8);
    border-radius: 18px;
    box-shadow: 0 12px 26px rgba(52,29,0,0.11);
    margin: 0;
    overflow: hidden;
    padding: 12px;
  }

  .blog-before-after-card img {
    aspect-ratio: 8.5 / 11;
    background: white;
    border-radius: 12px;
    display: block;
    height: clamp(220px, 30vw, 330px);
    object-fit: contain;
    object-position: center;
    width: 100%;
  }

  .blog-before-after-card figcaption {
    color: var(--dark);
    font-family: 'Baloo 2', cursive;
    font-size: 16px;
    font-weight: 900;
    padding-top: 10px;
    text-align: center;
  }

  .blog-before-after-arrow {
    align-items: center;
    background: linear-gradient(135deg, var(--saffron), #FF4B00);
    border-radius: 999px;
    color: white;
    display: flex;
    font-size: 22px;
    font-weight: 900;
    height: 42px;
    justify-content: center;
    width: 42px;
  }

  .blog-share,
  .blog-post-nav,
  .blog-related {
    margin-top: 34px;
  }

  .blog-share {
    align-items: center;
    border-top: 1px solid rgba(255,179,0,0.22);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 22px;
  }

  .blog-share span {
    color: var(--dark);
    font-weight: 900;
  }

  .blog-share button {
    background: white;
    border: 2px solid rgba(236,58,125,0.24);
    border-radius: 999px;
    color: var(--lotus);
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    padding: 10px 14px;
  }

  .blog-share button:hover,
  .blog-share button:focus-visible {
    background: var(--lotus);
    color: white;
  }

  .blog-post-nav {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .blog-post-nav a,
  .blog-post-nav span {
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(255,179,0,0.28);
    border-radius: 16px;
    color: var(--dark);
    font-weight: 900;
    padding: 14px;
    text-align: center;
    text-decoration: none;
  }

  .blog-post-nav .is-disabled {
    opacity: 0.48;
  }

  .blog-related {
    border-top: 1px solid rgba(255,179,0,0.22);
    padding-top: 26px;
  }

  .blog-related h2 {
    text-align: center;
  }

  .blog-related-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
  }

  .blog-related-card {
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(255,179,0,0.26);
    border-radius: 18px;
    color: var(--dark);
    font-weight: 900;
    padding: 16px;
    text-align: center;
    text-decoration: none;
  }

  .blog-related-card:hover,
  .blog-related-card:focus-visible {
    border-color: var(--lotus);
    color: var(--lotus);
  }

  .product-layout {
    display: grid;
    grid-template-columns: minmax(420px, 1.08fr) minmax(380px, 0.92fr);
    gap: clamp(42px, 6vw, 78px);
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
  }

  .product-gallery,
  .product-info {
    min-width: 0;
  }

  .product-gallery-main {
    background:
      radial-gradient(circle at 28% 18%, rgba(255,179,0,0.12), transparent 26%),
      linear-gradient(145deg, #FFF9EA, #FFFDF6);
    border: 1px solid rgba(255,179,0,0.16);
    border-radius: 28px;
    padding: clamp(24px, 4vw, 46px);
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 56px rgba(92,58,0,0.08);
    overflow: hidden;
  }

  .product-cover-img {
    display: block;
    width: min(100%, 510px);
    aspect-ratio: 8.5 / 11;
    max-height: 610px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 16px 34px rgba(26,10,0,0.16);
    background: white;
    color: transparent;
    font-size: 0;
  }

  .product-thumbs {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 22px;
  }

  .product-thumb,
  .product-thumb-placeholder {
    width: 68px;
    height: auto;
    aspect-ratio: 8.5 / 11;
    min-height: 0;
    border-radius: 10px;
    background: #FFF8E8;
    border: 1px solid rgba(232,213,176,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: #9A7440;
    font-size: 8px;
    font-weight: 800;
    line-height: 1.2;
    box-shadow: 0 5px 14px rgba(92,58,0,0.06);
  }

  .product-thumb {
    cursor: pointer;
    padding: 0;
    appearance: none;
    font: inherit;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .product-thumb.current {
    border: 2px solid var(--lotus);
  }

  .product-thumb:focus-visible {
    outline: 3px solid rgba(232,64,122,0.35);
    outline-offset: 3px;
  }

  .product-thumb-future {
    border: 1px dashed rgba(255,107,0,0.55);
    background:
      radial-gradient(circle at 30% 20%, rgba(255,179,0,0.18), transparent 36%),
      #FFF8E8;
    color: #8B5A16;
    cursor: default;
    padding: 8px;
  }

  .product-thumb-future span {
    display: block;
    font-family: 'Baloo 2', cursive;
    font-size: 9px;
    font-weight: 900;
    line-height: 1.05;
  }

  .product-thumb-future[disabled] {
    opacity: 1;
  }

  .mobile-scroll-frame {
    display: contents;
  }

  .mobile-scroll-arrow {
    display: none;
  }

  .product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
    color: transparent;
    font-size: 0;
    pointer-events: none;
  }

  .product-page-section img.image-load-failed {
    visibility: hidden;
  }

  .product-info h1, .product-info h2 {
    font-size: clamp(34px, 3.4vw, 46px);
    line-height: 1.08;
    margin-bottom: 16px;
    color: var(--dark);
    text-align: left;
  }

  .product-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--lotus);
    border: 2px solid rgba(232,64,122,0.28);
    background: rgba(255,255,255,0.72);
    border-radius: 999px;
    padding: 7px 15px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 16px;
  }

  .product-copy {
    color: #554235;
    font-size: clamp(17px, 1.45vw, 20px);
    line-height: 1.45;
    margin-bottom: 20px;
  }

  .product-facts {
    list-style: disc;
    display: block;
    margin: 22px 0 0 20px;
    padding: 0;
  }

  .product-facts li {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0 0 8px;
    color: #554235;
    font-size: clamp(16px, 1.35vw, 19px);
    font-weight: 600;
    box-shadow: none;
  }

  .product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 28px;
  }

  .product-amazon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 999px;
    padding: 12px 26px;
    font-family: 'Baloo 2', cursive;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
  }

  .product-amazon-btn {
    background: linear-gradient(135deg, var(--saffron), #FF4B00);
    color: white;
    box-shadow: 0 10px 24px rgba(255,107,0,0.26);
  }

  .product-marketplaces {
    margin-top: 30px;
  }

  .product-marketplace-summary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: #5B3A96;
    font-family: 'Nunito', sans-serif;
    font-size: clamp(17px, 1.45vw, 20px);
    font-weight: 900;
    line-height: 1.12;
  }

  .amazon-marketplace-logo {
    display: block;
    width: 116px;
    height: auto;
    object-fit: contain;
    flex: 0 0 auto;
  }

  .product-marketplace-summary-buy {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .amazon-buy-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-family: 'Nunito', sans-serif;
    font-size: clamp(18px, 1.55vw, 22px);
    font-weight: 500;
    line-height: 1.15;
  }

  .amazon-buy-line .amazon-marketplace-logo {
    align-self: center;
    transform: translateY(8px);
  }

  .marketplace-summary-subline {
    color: #5B3A96;
    font-family: 'Nunito', sans-serif;
    font-size: clamp(16px, 1.35vw, 20px);
    font-weight: 900;
    line-height: 1.2;
  }

  .product-marketplace-box {
    max-width: 570px;
    padding: 18px;
    border: 1px solid rgba(232,213,176,0.96);
    border-radius: 22px;
    background: rgba(255,255,255,0.82);
    box-shadow: 0 14px 34px rgba(92,58,0,0.10);
  }

  .product-marketplace-helper,
  .product-marketplace-note {
    margin: 0;
    text-align: center;
    color: #6A5846;
    font-size: 13px;
    line-height: 1.35;
  }

  .product-marketplace-helper {
    color: var(--dark);
  }

  .marketplace-helper-country {
    color: #D00000;
    font-weight: 900;
  }

  .marketplace-helper-amazon {
    color: var(--lotus);
    font-weight: 900;
  }

  .product-marketplace-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 14px 0;
  }

  .marketplace-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 42px;
    border: 1px solid rgba(214,198,166,0.92);
    border-radius: 999px;
    padding: 9px 11px;
    background: linear-gradient(180deg, #FFFDF6, #F3EBDD);
    color: var(--dark);
    font: 800 13px/1.1 'Nunito', sans-serif;
    cursor: default;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.82), 0 6px 16px rgba(92,58,0,0.06);
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
  }

  .marketplace-pill-link {
    cursor: pointer;
  }

  .marketplace-pill-link::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.72) 45%, transparent 72%);
    transform: translateX(-130%);
    transition: transform 0.56s ease;
    pointer-events: none;
  }

  .marketplace-pill-link:focus-visible {
    transform: translateY(-3px) scale(1.035);
    border-color: rgba(255,107,0,0.58);
    background: linear-gradient(135deg, #FFF8E7 0%, #FFE7F1 48%, #FFFDF6 100%);
    color: var(--saffron);
    box-shadow: 0 12px 24px rgba(255,107,0,0.18), 0 0 0 3px rgba(232,62,124,0.12);
    outline: none;
  }

  .marketplace-pill-link:focus-visible::after {
    transform: translateX(130%);
  }

  .marketplace-pill-link:active {
    transform: translateY(-1px) scale(0.99);
  }

  .marketplace-pill .market-flag {
    width: 22px;
    height: 22px;
    border-width: 1px;
    box-shadow: 0 1px 5px rgba(26,10,0,0.14);
    flex: 0 0 auto;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
  }

  .marketplace-pill-link:focus-visible .market-flag {
    transform: translateX(-2px) scale(1.08);
    box-shadow: 0 4px 10px rgba(26,10,0,0.18);
  }

  @media (hover: hover) and (pointer: fine) {
    .marketplace-pill-link:hover {
      transform: translateY(-3px) scale(1.035);
      border-color: rgba(255,107,0,0.58);
      background: linear-gradient(135deg, #FFF8E7 0%, #FFE7F1 48%, #FFFDF6 100%);
      color: var(--saffron);
      box-shadow: 0 12px 24px rgba(255,107,0,0.18), 0 0 0 3px rgba(232,62,124,0.12);
      outline: none;
    }

    .marketplace-pill-link:hover::after {
      transform: translateX(130%);
    }

    .marketplace-pill-link:hover .market-flag {
      transform: translateX(-2px) scale(1.08);
      box-shadow: 0 4px 10px rgba(26,10,0,0.18);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .marketplace-pill,
    .marketplace-pill::after,
    .marketplace-pill .market-flag {
      transition: none;
    }
  }

  .product-aplus {
    display: grid;
    gap: 18px;
    max-width: 1140px;
    margin: 82px auto 0;
    padding-top: 34px;
    border-top: 2px solid rgba(255,107,0,0.26);
  }

  .product-aplus-heading {
    text-align: center;
    margin-bottom: 10px;
  }

  .product-aplus-heading h2,
  .product-aplus-heading h3 {
    font-family: 'Baloo 2', cursive;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.05;
    color: var(--dark);
    margin-bottom: 10px;
  }

  .product-aplus-heading span {
    display: block;
    width: min(220px, 54vw);
    height: 4px;
    margin: 0 auto;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--saffron), var(--lotus));
  }

  .product-difference {
    display: block;
    max-width: 980px;
    margin: 72px auto 0;
    padding: 34px clamp(28px, 4vw, 50px) 42px;
    border: 1px solid rgba(255,179,0,0.25);
    border-radius: 28px;
    background:
      radial-gradient(circle at 20% 22%, rgba(255,179,0,0.12), transparent 28%),
      radial-gradient(circle at 82% 70%, rgba(232,62,124,0.10), transparent 30%),
      rgba(255,255,255,0.86);
    box-shadow: 0 18px 42px rgba(92,58,0,0.10);
  }

  .product-difference-head {
    text-align: center;
    margin-bottom: 26px;
  }

  .product-difference-eyebrow {
    display: block;
    color: var(--saffron);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
  }

  .product-difference h2,
  .product-difference h3 {
    color: var(--dark);
    font-family: 'Baloo 2', cursive;
    font-size: clamp(34px, 3vw, 46px);
    line-height: 1;
    margin: 0;
  }

  .product-difference-line {
    display: block;
    width: 86px;
    height: 4px;
    margin: 12px auto 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--saffron), #FF4B00);
  }

  .product-difference p {
    max-width: 560px;
    margin: 0 auto;
    color: #6A4B28;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }

  .product-difference-examples {
    display: grid;
    gap: 34px;
  }

  .product-difference-examples .product-difference-grid + .product-difference-grid {
    padding-top: 34px;
    border-top: 1px dashed rgba(255,179,0,0.30);
  }

  .product-difference-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 96px minmax(0, 1fr);
    align-items: center;
    gap: 28px;
  }

  .difference-card {
    position: relative;
    margin: 0;
    padding: 24px;
    border: 2px solid rgba(232,213,176,0.95);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 26px rgba(92,58,0,0.10);
  }

  .difference-label {
    position: absolute;
    left: 50%;
    top: -18px;
    transform: translateX(-50%);
    min-width: 130px;
    border-radius: 999px;
    padding: 8px 20px;
    color: #fff;
    font-family: 'Baloo 2', cursive;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    box-shadow: 0 8px 18px rgba(92,58,0,0.12);
  }

  .difference-label-before {
    background: linear-gradient(135deg, #9C9C9C, #6E6E6E);
  }

  .difference-label-after {
    background: linear-gradient(135deg, var(--saffron), #FF4B00);
  }

  .difference-image-slot {
    display: grid;
    place-items: center;
    aspect-ratio: 210 / 297;
    border: 2px solid rgba(232,213,176,0.95);
    border-radius: 16px;
    background: #fff;
    color: #7A5420;
    text-align: center;
    overflow: hidden;
  }

  .difference-image-slot img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
  }

  .difference-image-slot strong {
    display: block;
    color: var(--dark);
    font-family: 'Baloo 2', cursive;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 8px;
  }

  .difference-image-slot span {
    display: block;
    max-width: 190px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
  }

  .difference-arrow {
    display: grid;
    place-items: center;
    width: 88px;
    height: 64px;
    margin: 0 auto;
    border-radius: 999px;
    background: linear-gradient(135deg, #FFD45A, var(--saffron), #FF4B00);
    color: white;
    font-family: 'Baloo 2', cursive;
    font-size: 46px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 12px 24px rgba(255,107,0,0.24);
  }

  .product-aplus img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    border-radius: 18px;
    background: #FFFDF4;
    box-shadow: 0 12px 30px rgba(92,58,0,0.08);
    color: transparent;
    font-size: 0;
  }

  .product-related {
    position: relative;
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid rgba(92,58,0,0.16);
  }

  .product-related h2,
  .product-related h3 {
    font-family: 'Baloo 2', cursive;
    font-size: clamp(27px, 3vw, 36px);
    color: var(--dark);
    text-align: center;
    margin-bottom: 26px;
  }

  .related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
    align-items: stretch;
  }

  .related-book-card a {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-decoration: none;
    color: var(--dark);
    height: 100%;
    background: rgba(255,255,255,0.9);
    border: 1px solid #F0E0C0;
    border-radius: 14px;
    padding: 14px 12px 16px;
    text-align: center;
    box-shadow: 0 8px 22px rgba(92,58,0,0.07);
    box-sizing: border-box;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  }

  .related-book-card img {
    width: 100%;
    height: clamp(172px, 19vw, 238px);
    aspect-ratio: 8.5 / 11;
    object-fit: contain;
    border-radius: 10px;
    padding: 0;
    margin-bottom: 14px;
    background: #FFFDF4;
    box-shadow: none;
    box-sizing: border-box;
    color: transparent;
    font-size: 0;
  }

  .related-book-card strong {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    min-height: 38px;
    margin-bottom: 6px;
  }

  .related-book-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--lotus), #FF6B9A);
    color: white;
    font-size: 12px;
    font-weight: 900;
    margin-top: auto;
    box-shadow: 0 6px 14px rgba(232, 64, 122, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .related-book-card a:hover {
    transform: translateY(-3px);
    border-color: rgba(255,107,0,0.36);
    box-shadow: 0 14px 30px rgba(255,107,0,0.12);
  }

  .related-book-card a:hover span {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(232, 64, 122, 0.24);
  }

  @media (max-width: 900px) {
    .product-page-section {
      padding: 0 18px 64px;
    }

    .product-page-shell {
      padding: 0;
      border-radius: 0;
    }

    .product-home-corner {
      position: static;
      width: fit-content;
      min-height: 38px;
      margin: 0 0 18px auto;
      padding: 9px 18px;
      font-size: 14px;
    }

    .product-breadcrumb,
    .product-layout {
      max-width: 720px;
    }

    .product-breadcrumb {
      padding-right: 0;
      gap: 8px;
      margin-bottom: 24px;
      font-size: 14px;
      line-height: 1.4;
    }

    .product-layout {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .product-difference {
      display: block;
      width: 100%;
      max-width: 720px;
      margin: 30px auto 0;
      padding: 20px 10px 18px;
      border-radius: 18px;
    }

    .product-difference .product-difference-head {
      margin-bottom: 16px;
    }

    .product-difference .product-difference-eyebrow {
      font-size: 11px;
    }

    .product-difference h3 {
      font-size: 28px;
    }

    .product-difference .product-difference-line {
      width: 62px;
      height: 3px;
      margin: 8px auto 10px;
    }

    .product-difference .product-difference-head p {
      max-width: 310px;
      font-size: 12px;
      line-height: 1.35;
    }

    .product-difference .product-difference-examples {
      gap: 22px;
    }

    .product-difference .product-difference-examples .product-difference-grid + .product-difference-grid {
      padding-top: 22px;
    }

    .product-difference .product-difference-grid {
      grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1fr);
      gap: 6px;
      align-items: center;
    }

    .product-difference .difference-card {
      padding: 10px 6px 6px;
      border-radius: 14px;
      box-shadow: 0 8px 18px rgba(92,58,0,0.10);
    }

    .product-difference .difference-label {
      top: -13px;
      min-width: 68px;
      padding: 5px 10px;
      font-size: 14px;
    }

    .product-difference .difference-image-slot {
      border-radius: 10px;
    }

    .product-difference .difference-arrow {
      width: 28px;
      height: 28px;
      font-size: 22px;
      box-shadow: 0 7px 14px rgba(255,107,0,0.20);
    }

    .product-gallery-main {
      min-height: auto;
      padding: 22px;
      border-radius: 22px;
    }

    .product-info h1, .product-info h2 {
      text-align: left;
    }

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

  @media (max-width: 520px) {
    .product-page-section {
      padding-left: 14px;
      padding-right: 14px;
      overflow-x: hidden;
      max-width: none;
    }

    .product-page-shell,
    .product-breadcrumb,
    .product-layout {
      width: 100%;
      max-width: 100%;
    }

    .product-gallery-main {
      width: 100%;
      aspect-ratio: 8.5 / 11;
      min-height: 0;
      box-sizing: border-box;
      padding: 14px;
      overflow: hidden;
    }

    .product-cover-img {
      width: 100%;
      height: 100%;
      max-width: 100%;
      max-height: none;
      object-fit: contain;
    }

    .product-thumbs {
      justify-content: flex-start;
      overflow-x: auto;
      margin-top: 0;
      padding-bottom: 8px;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .product-thumbs::-webkit-scrollbar {
      display: none;
    }

    .product-thumb,
    .product-thumb-placeholder {
      flex: 0 0 66px;
      width: 66px;
      height: auto;
      aspect-ratio: 8.5 / 11;
    }

  }

  /* PRODUCT RELATED MOBILE */
  @media (max-width: 768px) {
    .product-layout {
      gap: 18px;
    }

    .product-info {
      display: flex;
      flex-direction: column;
    }

    .product-actions {
      order: -1;
      justify-content: center;
      margin-top: 0;
      margin-bottom: 18px;
    }

    .product-amazon-btn {
      min-height: 46px;
      padding: 11px 24px;
    }

    .product-marketplaces {
      margin-top: 24px;
    }

    .product-marketplace-summary {
      justify-content: center;
      width: 100%;
    }

    .product-marketplace-summary-buy {
      align-items: center;
      text-align: center;
    }

    .amazon-buy-line {
      justify-content: center;
    }

    .product-marketplace-box {
      max-width: 100%;
      padding: 16px 12px;
      border-radius: 18px;
    }

    .product-marketplace-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 9px;
    }

    .marketplace-pill {
      min-height: 40px;
      padding: 8px 9px;
      font-size: 12px;
    }

    .marketplace-pill-link {
      justify-content: flex-start;
      min-height: 50px;
      padding: 10px 12px;
      border: 1.5px solid rgba(255,107,0,0.52);
      background: linear-gradient(135deg, #FFFDF6 0%, #FFF1D8 58%, #FFE8F1 100%);
      color: var(--dark);
      box-shadow: 0 9px 20px rgba(255,107,0,0.16), inset 0 1px 0 rgba(255,255,255,0.86);
      font-size: 13px;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
    }

    .marketplace-pill-link .market-flag {
      width: 24px;
      height: 24px;
      order: 1;
    }

    .marketplace-pill-link span:not(.market-flag) {
      order: 2;
      flex: 1 1 auto;
      text-align: left;
    }

    .marketplace-pill-link::before {
      content: "Tap";
      order: 3;
      flex: 0 0 auto;
      border-radius: 999px;
      padding: 4px 7px;
      background: var(--saffron);
      color: #fff;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      box-shadow: 0 4px 10px rgba(255,107,0,0.24);
    }

    .marketplace-pill-link:active {
      transform: scale(0.98);
      border-color: rgba(232,62,124,0.62);
      background: linear-gradient(135deg, #FFE8F1 0%, #FFF1D8 100%);
      box-shadow: 0 5px 14px rgba(232,62,124,0.15);
    }

    .product-aplus {
      gap: 12px;
      margin-top: 48px;
      padding-top: 26px;
    }

    .product-difference {
      display: block;
    }

    .product-aplus-heading {
      margin-bottom: 8px;
    }

    .product-aplus img {
      border-radius: 12px;
    }

    .product-related {
      margin-top: 34px;
      padding-top: 24px;
    }

    .product-related h2,
    .product-related h3 {
      margin-bottom: 14px;
    }

    .mobile-scroll-frame {
      display: grid;
      grid-template-columns: 34px minmax(0, 1fr) 34px;
      align-items: center;
      gap: 8px;
      width: 100%;
    }

    .product-gallery .mobile-scroll-frame {
      margin-top: 16px;
    }

    .mobile-scroll-arrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 44px;
      border: 0;
      border-radius: 999px;
      background: transparent;
      color: var(--dark);
      font-size: 36px;
      font-weight: 900;
      line-height: 1;
      cursor: pointer;
      padding: 0;
      touch-action: manipulation;
    }

    .mobile-scroll-arrow:focus-visible {
      outline: 3px solid rgba(232,64,122,0.3);
      outline-offset: 2px;
    }

    .related-grid {
      display: flex;
      grid-template-columns: none;
      gap: 14px;
      overflow-x: auto;
      overflow-y: hidden;
      margin: 0;
      padding: 4px 4px 16px;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      -ms-overflow-style: none;
      -webkit-overflow-scrolling: touch;
    }

    .related-grid::-webkit-scrollbar {
      display: none;
    }

    .related-grid::-webkit-scrollbar-track {
      background: rgba(255,179,0,0.12);
      border-radius: 999px;
    }

    .related-grid::-webkit-scrollbar-thumb {
      background: var(--saffron);
      border-radius: 999px;
    }

    .related-book-card {
      flex: 0 0 clamp(152px, 44vw, 184px);
      scroll-snap-align: start;
    }

    .related-book-card a {
      height: 100%;
      box-sizing: border-box;
    }

    .related-book-card img {
      height: clamp(150px, 46vw, 190px);
      border-radius: 10px;
      padding: 0;
      margin-bottom: 10px;
    }

    .related-book-card strong {
      font-size: 13px;
    }
  }

  @media (max-width: 900px) {
    .blog-hero,
    .blog-card-grid {
      grid-template-columns: 1fr;
      max-width: 720px;
    }

    .blog-related-grid {
      grid-template-columns: 1fr;
    }

    .blog-book-picker {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-book-pick img {
      height: clamp(150px, 38vw, 190px);
    }

    .blog-hero-panel,
    .blog-side-panel,
    .blog-card,
    .blog-article {
      border-radius: 22px;
    }
  }

  @media (max-width: 520px) {
    .blog-hero-panel,
    .blog-side-panel,
    .blog-card,
    .blog-article {
      padding: 22px;
    }

    .blog-list-card {
      padding: 0;
    }

    .blog-hero-panel h1,
    .blog-listing-hero h1,
    .blog-article h1 {
      font-size: clamp(34px, 11vw, 48px);
    }

    .blog-card-media {
      aspect-ratio: 16 / 9;
    }

    .product-breadcrumb {
      align-items: flex-start;
      gap: 5px 7px;
      font-size: 13px;
    }

    .product-breadcrumb span:last-child {
      flex: 1 1 100%;
      color: var(--dark);
      font-weight: 800;
    }

    .blog-post-nav {
      grid-template-columns: 1fr;
    }

    .blog-before-after-grid {
      gap: 6px;
      grid-template-columns: minmax(0, 1fr) 26px minmax(0, 1fr);
    }

    .blog-before-after-arrow {
      font-size: 16px;
      height: 26px;
      width: 26px;
    }

    .blog-before-after-card {
      border-radius: 14px;
      padding: 6px;
    }

    .blog-before-after-card img {
      border-radius: 10px;
      height: clamp(170px, 48vw, 220px);
    }

    .blog-before-after-card figcaption {
      font-size: 13px;
      padding-top: 7px;
    }

    .blog-action-row a,
    .blog-card a {
      width: 100%;
    }
  }

  /* -- WHY US -- */
  .why-section {
    background: var(--dark);
    border-radius: 32px;
    padding: 64px 48px;
    margin: 0 40px;
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
    scroll-margin-top: 96px;
  }

  .why-section .section-eyebrow,
  .why-section h2,
  .why-card h3 {
    color: white;
  }
  .why-section .section-intro { color: rgba(255,251,240,0.7); }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

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

  .why-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,179,0,0.2);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s;
  }

  .why-card:hover {
    background: rgba(255,179,0,0.08);
    border-color: var(--marigold);
    transform: translateY(-4px);
  }

  .why-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFB300;
  }

  .why-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .why-card h3 {
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    font-size: 18px;
    color: white;
    margin-bottom: 8px;
  }

  .why-card p {
    font-size: 14px;
    color: rgba(255,251,240,0.65);
    line-height: 1.7;
  }

  /* -- PREVIEW / SAMPLE PAGES -- */
  @media (max-width: 768px) {
    .why-section {
      margin: 0 14px;
      max-width: none;
      border-radius: 26px;
      padding: 38px 22px 28px;
      background: #1A0A00;
      box-shadow: 0 18px 44px rgba(26,10,0,0.22);
      scroll-margin-top: 92px;
    }

    .why-section .section-eyebrow {
      justify-content: flex-start;
      margin-bottom: 12px;
      color: white;
      font-size: 12px;
      letter-spacing: 3px;
    }

    .why-section h2 {
      font-size: clamp(28px, 8vw, 36px);
      line-height: 1.12;
      margin-bottom: 18px;
      text-align: left;
      color: white !important;
    }

    .why-section .section-intro {
      max-width: none;
      margin: 0 0 28px;
      text-align: left;
      font-size: 15px;
      line-height: 1.65;
      color: rgba(255,251,240,0.76);
    }

    .why-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .why-card {
      border-radius: 18px;
      padding: 20px 18px;
      background: rgba(255,251,240,0.055);
      border: 1px solid rgba(255,179,0,0.28);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    }

    .why-card:hover {
      transform: none;
      background: rgba(255,251,240,0.07);
    }

    .why-icon {
      width: 34px;
      height: 34px;
      margin-bottom: 12px;
    }

    .why-card h3 {
      font-size: 17px;
      line-height: 1.22;
      margin-bottom: 8px;
    }

    .why-card p {
      font-size: 13px;
      line-height: 1.65;
      color: rgba(255,251,240,0.66);
    }
  }

  .preview-section { padding-top: 80px; }

  .preview-strip {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 8px 0 20px;
    align-items: stretch;
    scrollbar-width: thin;
    scrollbar-color: var(--marigold) transparent;
  }

  @keyframes loopScrollLeft {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
  }

  .auto-loop-scroll {
    overflow: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: auto;
    touch-action: pan-y pinch-zoom;
    -webkit-tap-highlight-color: transparent;
    mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  }

  .auto-loop-scroll::-webkit-scrollbar {
    display: none;
  }

  .auto-loop-scroll .loop-track {
    display: flex;
    gap: inherit;
    width: max-content;
    animation: loopScrollLeft var(--loop-duration, 42s) linear infinite;
    will-change: transform;
  }

  .auto-loop-scroll .loop-track > * {
    flex-shrink: 0;
  }

  .video-scroll-wrapper.auto-loop-scroll,
  .preview-strip.auto-loop-scroll {
    scroll-snap-type: none;
    overflow-x: hidden;
  }

  .preview-strip.auto-loop-scroll {
    mask-image: linear-gradient(90deg, transparent 0, #000 2%, #000 98%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 2%, #000 98%, transparent 100%);
  }

  @media (prefers-reduced-motion: reduce) {
    .auto-loop-scroll {
      overflow-x: auto;
      mask-image: none;
      -webkit-mask-image: none;
    }

    .auto-loop-scroll .loop-track {
      animation: none;
    }
  }

  .preview-card {
    flex: 0 0 clamp(220px, 22vw, 280px);
    aspect-ratio: 8.5 / 11;
    border-radius: 14px;
    background: white;
    border: 2px solid #F3D28E;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: 0 8px 22px rgba(92,58,0,0.08), inset 0 0 0 1px rgba(255,255,255,0.9);
    transition: box-shadow 0.3s;
    position: relative;
    overflow: hidden;
  }

  .preview-card::before {
    content: none;
  }

  .preview-page {
    width: 100%;
    height: 100%;
    min-width: 0;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 10px;
    background: white;
    box-shadow: inset 0 0 0 1px rgba(92,58,0,0.1);
    outline: 1px solid rgba(92,58,0,0.1);
    outline-offset: -1px;
    image-rendering: auto;
  }

  /* -- FESTIVAL SECTION -- */
  .seo-faq-section {
    position: relative;
    z-index: 1;
    padding: 70px 40px 80px;
  }

  .seo-faq-shell {
    max-width: 1080px;
    margin: 0 auto;
    background: rgba(255, 248, 232, 0.82);
    border: 1px solid #F0D59A;
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 14px 45px rgba(92, 58, 0, 0.08);
  }

  .seo-faq-shell h2 {
    font-size: 34px;
    text-align: center;
    margin-bottom: 26px;
  }

  .seo-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .seo-faq-item {
    background: #fff;
    border: 1px solid #F0D59A;
    border-radius: 12px;
    padding: 20px;
  }

  .seo-faq-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark);
  }

  .seo-faq-item p {
    font-size: 15px;
    line-height: 1.65;
    color: #6B4A1A;
  }

  @media (max-width: 760px) {
    .seo-faq-section {
      padding: 48px 18px 58px;
    }

    .seo-faq-shell {
      padding: 24px 18px;
      border-radius: 16px;
    }

    .seo-faq-shell h2 {
      font-size: 27px;
    }

    .seo-faq-grid {
      grid-template-columns: 1fr;
    }
  }

  .festival-bar {
    background: linear-gradient(135deg, var(--saffron), var(--lotus));
    border-radius: 20px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin: 0 40px;
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
  }

  .festival-bar h2 {
    color: white;
    font-size: 28px;
    margin-bottom: 8px;
  }

  .festival-bar p {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    max-width: 480px;
  }

  .festival-btn {
    background: white;
    color: var(--saffron);
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    flex-shrink: 0;
  }

  .festival-btn:hover { transform: scale(1.04); }

  /* -- NEWSLETTER -- */
  .newsletter-section {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 40px;
  }

  .newsletter-box {
    position: relative;
    z-index: 1;
    background: var(--soft);
    border: 2px solid var(--marigold);
    border-radius: 24px;
    padding: 52px 40px;
    max-width: 560px;
    margin: 0 auto;
  }

  .newsletter-box .emoji { font-size: 48px; margin-bottom: 16px; display: block; }

  .newsletter-box h2 { font-size: 28px; margin-bottom: 10px; }

  .newsletter-box p {
    font-size: 15px;
    color: #5C3A00;
    margin-bottom: 28px;
    line-height: 1.6;
  }

  .email-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .email-form input {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid #E8D5B0;
    border-radius: 100px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    background: white;
  }

  .email-form input:focus { border-color: var(--saffron); }

  .email-form input.is-invalid {
    border-color: #E8407A;
  }

  .email-form button {
    background: var(--saffron);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 100px;
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
  }

  .email-form button:hover { background: #E55A00; }

  .email-form button:disabled {
    cursor: not-allowed;
    opacity: 0.72;
  }

  .newsletter-consent,
  .newsletter-message {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .newsletter-box .newsletter-consent {
    color: #7A5A28;
    font-size: 12px;
    line-height: 1.55;
    margin-bottom: 0;
    margin-top: 14px;
  }

  .newsletter-consent a {
    color: var(--lotus);
    font-weight: 800;
  }

  .newsletter-box .newsletter-message {
    border-radius: 14px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
    margin-bottom: 0;
    margin-top: 12px;
    padding: 10px 12px;
  }

  .newsletter-error {
    background: rgba(232,64,122,0.10);
    color: #A92352;
  }

  .newsletter-success {
    background: rgba(45,198,83,0.12);
    color: #176B3A;
  }

  /* MARKETPLACE FLAGS */
  .market-flag {
    position: relative;
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(26,10,0,0.16);
    background: #fff;
  }

  .flag-us { background: repeating-linear-gradient(to bottom, #B22234 0 7.7%, #fff 7.7% 15.4%); }
  .flag-us::before { content: ""; position: absolute; inset: 0 48% 46% 0; background: #3C3B6E; }
  .flag-uk {
    background:
      linear-gradient(90deg, transparent 42%, #fff 42% 58%, transparent 58%),
      linear-gradient(0deg, transparent 42%, #fff 42% 58%, transparent 58%),
      linear-gradient(90deg, transparent 46%, #C8102E 46% 54%, transparent 54%),
      linear-gradient(0deg, transparent 46%, #C8102E 46% 54%, transparent 54%),
      #012169;
  }
  .flag-ca { background: linear-gradient(90deg, #D80621 0 25%, #fff 25% 75%, #D80621 75%); }
  .flag-ca::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    background: #D80621;
  }
  .flag-de { background: linear-gradient(to bottom, #111 0 33%, #DD0000 33% 66%, #FFCE00 66%); }
  .flag-fr { background: linear-gradient(90deg, #0055A4 0 33%, #fff 33% 66%, #EF4135 66%); }
  .flag-es { background: linear-gradient(to bottom, #AA151B 0 25%, #F1BF00 25% 75%, #AA151B 75%); }
  .flag-it { background: linear-gradient(90deg, #009246 0 33%, #fff 33% 66%, #CE2B37 66%); }
  .flag-nl { background: linear-gradient(to bottom, #AE1C28 0 33%, #fff 33% 66%, #21468B 66%); }
  .flag-pl { background: linear-gradient(to bottom, #fff 0 50%, #DC143C 50%); }
  .flag-se {
    background:
      linear-gradient(90deg, transparent 30%, #FECC00 30% 43%, transparent 43%),
      linear-gradient(0deg, transparent 42%, #FECC00 42% 55%, transparent 55%),
      #006AA7;
  }
  .flag-be { background: linear-gradient(90deg, #000 0 33%, #FAE042 33% 66%, #ED2939 66%); }
  .flag-ie { background: linear-gradient(90deg, #169B62 0 33%, #fff 33% 66%, #FF883E 66%); }
  .flag-jp::before {
    content: "";
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #BC002D;
  }
  .flag-au { background: #012169; }
  .flag-au::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 14px;
    height: 14px;
    background:
      linear-gradient(90deg, transparent 42%, #fff 42% 58%, transparent 58%),
      linear-gradient(0deg, transparent 42%, #fff 42% 58%, transparent 58%),
      linear-gradient(90deg, transparent 47%, #C8102E 47% 53%, transparent 53%),
      linear-gradient(0deg, transparent 47%, #C8102E 47% 53%, transparent 53%),
      #012169;
  }
  .flag-au::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #fff;
    left: 18px;
    top: 8px;
    box-shadow: -3px 9px 0 #fff, 5px 8px 0 #fff, 1px 16px 0 #fff;
  }

  /* -- FOOTER -- */
  footer {
    background: var(--dark);
    color: rgba(255,251,240,0.55);
    padding: 40px;
    text-align: center;
    font-size: 13px;
    line-height: 2;
  }

  footer .footer-logo {
    font-family: 'Baloo 2', cursive;
    font-size: 20px;
    font-weight: 800;
    color: var(--marigold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
  }

  .footer-logo-mark {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid rgba(255, 179, 0, 0.72);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.28);
    display: block;
    flex: 0 0 36px;
  }

  footer a { color: var(--marigold); text-decoration: none; }
  footer a:hover { color: var(--saffron); }

  .footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 14px 0;
    flex-wrap: wrap;
  }

  .footer-contact {
    margin: 4px 0 10px;
    color: rgba(255,251,240,0.66);
    font-weight: 700;
  }

  .social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 10px 0 8px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--marigold);
    background: rgba(255,251,240,0.06);
    border: 1px solid rgba(255,179,0,0.24);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }

    .social-link svg {
      width: 18px;
      height: 18px;
      display: block;
      fill: currentColor;
      overflow: visible;
    }

  .social-link:hover {
    transform: translateY(-2px);
    color: #fff;
    background: var(--saffron);
    border-color: var(--saffron);
  }
@media (max-width: 600px) {
    .festival-bar {
      width: calc(100% - 64px);
      margin: 0 auto;
      padding: 30px 24px;
      border-radius: 18px;
      gap: 22px;
    }
    .festival-bar h2 {
      font-size: 27px;
      line-height: 1.16;
    }
    .festival-bar p {
      font-size: 15px;
      line-height: 1.45;
    }
    .festival-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 230px;
      padding: 13px 18px;
      margin: 2px auto 0;
    }
    .newsletter-section {
      padding: 62px 26px;
    }
    .newsletter-box {
      padding: 38px 24px;
      border-radius: 22px;
      max-width: 320px;
    }
    .newsletter-box h2 {
      font-size: 27px;
      line-height: 1.18;
    }
    .newsletter-box p {
      font-size: 14px;
      line-height: 1.55;
    }
    .email-form {
      width: 100%;
      max-width: 260px;
      flex-direction: column;
      gap: 10px;
    }
    .email-form input,
    .email-form button {
      width: 100%;
      min-height: 50px;
      box-sizing: border-box;
      text-align: center;
    }
}

  /* -- VIDEO SECTION -- */
  .video-section {
    position: relative;
    z-index: 1;
    padding: 64px 40px 48px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .video-scroll-wrapper {
    display: flex;
    flex-direction: row;
    gap: 18px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 12px 4px 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--saffron) rgba(255,179,0,0.15);
    -webkit-overflow-scrolling: touch;
    min-height: 340px;
    align-items: flex-start;
  }

  .video-scroll-wrapper::-webkit-scrollbar {
    height: 5px;
  }
  .video-scroll-wrapper::-webkit-scrollbar-track {
    background: rgba(255,179,0,0.12);
    border-radius: 100px;
  }
  .video-scroll-wrapper::-webkit-scrollbar-thumb {
    background: var(--saffron);
    border-radius: 100px;
  }

  .video-card {
    flex-shrink: 0;
    width: 180px;
    height: 320px;
    scroll-snap-align: start;
    border-radius: 20px;
    overflow: hidden;
    background: var(--dark);
    box-shadow: 0 6px 24px rgba(0,0,0,0.13);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* Placeholder state */
  .video-card.placeholder {
    background: linear-gradient(160deg, #1A0A00 0%, #2E1500 60%, #1A0A00 100%);
    border: 2px dashed rgba(255,179,0,0.3);
  }

  .placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 16px;
    text-align: center;
    height: 100%;
  }

  .placeholder-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(255,107,0,0.15);
    border: 2px dashed rgba(255,107,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s;
  }

  .placeholder-title {
    font-family: 'Baloo 2', cursive;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,251,240,0.75);
    line-height: 1.4;
  }

  .placeholder-sub {
    font-size: 11px;
    color: rgba(255,251,240,0.35);
    line-height: 1.5;
  }

  /* Uploaded video state */
  .video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
  }

  .video-card.local-video-card {
    background: #000;
    border: 2px solid rgba(255,179,0,0.34);
  }

  .video-card.local-video-card.is-sounding {
    border-color: rgba(255,179,0,0.34);
    box-shadow: 0 6px 24px rgba(0,0,0,0.13);
  }

  .video-card.local-video-card .video-ribbon {
    pointer-events: none;
  }

  @media (hover: hover) and (pointer: fine) {
    .video-card.placeholder:hover {
      transform: translateY(-6px) scale(1.02);
      box-shadow: 0 16px 40px rgba(255,107,0,0.22);
      border-color: var(--saffron);
    }

    .video-card.placeholder:hover .placeholder-icon {
      background: rgba(255,107,0,0.25);
      border-color: var(--saffron);
      transform: scale(1.1);
    }

  }

  /* Featured label ribbon */
  .video-ribbon {
    position: absolute;
    top: 14px;
    left: -2px;
    background: var(--saffron);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px 3px 8px;
    border-radius: 0 100px 100px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
  }

  .video-scroll-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #B08040;
    margin-top: 14px;
    font-style: italic;
  }

  /* -- SCROLL ANIMATIONS -- */
  .reveal {
    opacity: 1;
    transform: none;
  }

        @media (max-width: 900px) {
          .product-difference.product-difference-hindu {
            margin-top: 26px;
          }

          .product-difference-hindu .product-difference-examples {
            gap: 22px;
          }

          .product-difference-hindu .product-difference-examples .product-difference-grid + .product-difference-grid {
            padding-top: 22px;
          }

          .product-difference-hindu .product-difference-grid {
            grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1fr);
            gap: 8px;
            align-items: center;
          }

          .product-difference-hindu .difference-card {
            min-width: 0;
          }

          .product-difference-hindu .difference-image-slot {
            aspect-ratio: 8.5 / 11;
            min-height: 0;
          }

          .product-difference-hindu .difference-image-slot img {
            width: 100%;
            height: 100%;
            object-fit: contain;
          }
        }
  /* Hindu Gods before/after mobile tune */
  @media (max-width: 720px) {
    .product-difference.product-difference-hindu {
      margin: 24px -4px 0;
      padding: 20px 10px 22px;
      border-radius: 20px;
      overflow: visible;
    }

    .product-difference-hindu .product-difference-heading {
      margin-bottom: 14px;
      text-align: center;
    }

    .product-difference-hindu .product-difference-eyebrow {
      font-size: 0.72rem;
      letter-spacing: 0.02em;
    }

    .product-difference-hindu .product-difference-heading h2 {
      font-size: clamp(1.45rem, 6vw, 1.9rem);
      line-height: 1.08;
      margin: 6px 0 8px;
    }

    .product-difference-hindu .product-difference-heading p {
      max-width: 29rem;
      margin: 0 auto;
      font-size: 0.84rem;
      line-height: 1.48;
    }

    .product-difference-hindu .product-difference-examples {
      gap: 18px;
    }

    .product-difference-hindu .product-difference-examples .product-difference-grid + .product-difference-grid {
      padding-top: 18px;
      border-top: 1px dashed rgba(255, 168, 0, 0.36);
    }

    .product-difference-hindu .product-difference-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 26px minmax(0, 1fr);
      gap: 6px;
      align-items: center;
    }

    .product-difference-hindu .difference-card {
      min-width: 0;
      padding: 7px;
      border-radius: 14px;
      box-shadow: 0 8px 18px rgba(42, 18, 0, 0.10);
    }

    .product-difference-hindu .difference-label {
      top: -13px;
      left: 50%;
      transform: translateX(-50%);
      min-width: 68px;
      padding: 5px 10px;
      border-radius: 999px;
      font-size: 14px;
      line-height: 1;
    }

    .product-difference-hindu .difference-image-slot {
      aspect-ratio: 8.5 / 11;
      min-height: 0;
      max-height: none;
      border-radius: 10px;
      overflow: hidden;
    }

    .product-difference-hindu .difference-image-slot img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .product-difference-hindu .difference-arrow {
      width: 26px;
      height: 26px;
      min-width: 26px;
      border-radius: 999px;
      font-size: 1rem;
      box-shadow: 0 6px 12px rgba(255, 100, 18, 0.18);
    }
  }

  @media (max-width: 380px) {
    .product-difference.product-difference-hindu {
      padding-left: 8px;
      padding-right: 8px;
    }

    .product-difference-hindu .product-difference-grid {
      grid-template-columns: minmax(0, 1fr) 22px minmax(0, 1fr);
      gap: 4px;
    }

    .product-difference-hindu .difference-card {
      padding: 5px;
    }

    .product-difference-hindu .difference-arrow {
      width: 22px;
      height: 22px;
      min-width: 22px;
      font-size: 0.86rem;
    }
  }
  /* End Hindu Gods before/after mobile tune */
