/** Shopify CDN: Minification failed

Line 389:0 Unexpected "}"

**/
/* ==========================================================================
   LUMI & ARO — Mobile overrides
   ========================================================================== */


/* ---- GLOBAL FIX: Cart SVG icon being squished by flex layout ---- */
.cart-btn svg {
  width: 22px !important;
  height: 22px !important;
  flex-shrink: 0 !important;
}


/* ---- HAMBURGER + DROPDOWN — hidden on desktop, shown on mobile ---- */
#mobile-nav-toggle,
#mobile-nav-panel,
#mobile-nav-backdrop {
  display: none;
}


/* ==========================================================================
   MOBILE — viewports 768px and below
   ========================================================================== */

@media (max-width: 768px) {

  /* ---- FIX #1: Top promo banner gap on mobile ---- */
  .top-promo {
    gap: 0 !important;
    row-gap: 4px !important;
  }


  /* ---- FIX #3: Cart icon clipping (banner padding + badge position) ---- */
  .banner .wrap,
  .banner > .wrap {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .cart-count {
    top: -4px !important;
    right: -4px !important;
  }


  /* ---- FIX #2: Mobile nav layout — [hamburger] [logo] [cart] ---- */

  /* Hide the desktop text links (Books/Flashcards/etc) but keep cart visible */
  .banner .nav-links > a:not(.cart-btn) {
    display: none !important;
  }

  /* Center the logo within the nav */
  .banner nav {
    justify-content: center !important;
    position: relative !important;
  }

  .banner .logo {
    margin: 0 auto !important;
  }

  /* Push cart to the far right */
  .banner .nav-links {
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }


  /* ---- Hamburger button ---- */
  #mobile-nav-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 100;
  }

  #mobile-nav-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--ink, #1a1a1a);
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
  }

  /* Hamburger morphs to X when open */
  body.mobile-nav-open #mobile-nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  body.mobile-nav-open #mobile-nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  body.mobile-nav-open #mobile-nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }


  /* ---- Dropdown panel ---- */
  #mobile-nav-panel {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 112px;
    left: 12px;
    width: 200px;
    background: var(--ink, #1a1a1a);
    color: var(--cream, #fff);
    padding: 8px 0;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(-8px) scale(.95);
    transform-origin: top left;
    transition: opacity .2s ease, transform .2s ease;
    pointer-events: none;
    z-index: 90;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
  }

 body.mobile-nav-open #mobile-nav-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  /* ---- FIX #4: "Why Parents Choose" 3 cards stack vertically on mobile ---- */
  .why-pillars {
    grid-template-columns: 1fr !important;
  }
  /* ---- FIX #7: Limited release pill on mobile ---- */
  /* The pill text is 18px which forces wrapping. Shrink it so it fits
     on one line on phone widths. Target inline-flex pills with the
     italic Playfair Display style used by the limited-release pill. */
  .plushies-section .wrap > p[style*="border-radius:999px"],
  .plushies-section p[style*="Playfair Display"][style*="border-radius:999px"] {
    font-size: 12px !important;
    padding: 8px 14px !important;
    gap: 6px !important;
    white-space: nowrap !important;
  }

  .plushies-section p[style*="border-radius:999px"] svg {
    width: 12px !important;
    height: 12px !important;
  }
  /* ---- FIX #9: Best Friends Bundle ---- */

  /* Shrink "Perfect for gifting" text so it fits on one line */
  p[style*="font-size:13px"][style*="--tomato"][style*="letter-spacing:.04em"] {
    font-size: 11px !important;
    letter-spacing: .02em !important;
    white-space: nowrap !important;
  }

  /* Price + Add to cart button on same line */
  div[style*="flex-direction:column"][style*="align-items:flex-end"][style*="gap:10px"] {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
  }
/* ---- FIX #5 & #6: Badges above book covers on mobile ---- */
  /* Anchor the badge to the top of the book-row, then add top padding
     to the row so the image is pushed down below the badge.
     Critically: don't change book-row's display property \u2014 leave its
     existing grid/flex behavior intact. */

  .book-row {
    position: relative !important;
    padding-top: 56px !important;
  }

  .book-row .book-info .section-tag {
    position: absolute !important;
    top: 12px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
    z-index: 5 !important;
  }
  /* Tighten gap between image and title that follows */
  .book-row .book-art {
    margin-bottom: 0 !important;
  }

  .book-row .book-info {
    margin-top: 0 !important;
  }

  .book-row .book-info > * {
    margin-top: 8px !important;
  }

  .book-row .book-info > *:first-child {
    margin-top: 0 !important;
  }
  /* Tighten gap between image and title that follows */
  .book-row .book-art {
    margin-bottom: 0 !important;
  }

  .book-row .book-info {
    margin-top: 0 !important;
  }

  .book-row .book-info > * {
    margin-top: 8px !important;
  }

  .book-row .book-info > *:first-child {
    margin-top: 0 !important;
  }
  /* ---- FIX #8a: "Plushie" tag getting clipped on mobile ---- */
  /* The tag has letter-spacing:.1em which makes text wider than the
     fixed-width pill. Force the pill to size itself to the text. */
  .plushie-img-wrap > div[style*="position:absolute"][style*="top:14px"] {
    white-space: nowrap !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    overflow: visible !important;
    box-sizing: content-box !important;
  }
  /* ---- FIX #8b: Shrink plushie sections overall on mobile ---- */
  /* Tighten text sizes, padding, and spacing so each plushie section
     scrolls less without losing any content. */

  .plushie-card {
    padding: 20px !important;
  }

  /* Title (e.g., "Lumi Plushie") */
  .plushie-card h3,
  .plushie-card h2 {
    font-size: 26px !important;
    margin-top: 16px !important;
    margin-bottom: 8px !important;
    line-height: 1.1 !important;
  }

  /* Body description paragraph */
  .plushie-card > p,
  .plushie-card .plushie-img-wrap + p,
  .plushie-card p[style*="font-size:15px"] {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 14px !important;
  }

  /* "Why they'll love it" / learning-block panel */
  .plushie-card .learning-block {
    padding: 14px 16px !important;
    margin-bottom: 16px !important;
  }

  .plushie-card .learning-block * {
    font-size: 13px !important;
    line-height: 1.4 !important;
  }

  /* Size / meta rows */
  .plushie-card .book-meta-row {
    margin-bottom: 14px !important;
  }

  /* Price + Add to cart row */
  .plushie-card .price-row {
    margin-bottom: 0 !important;
  }

  /* Pink image wrap padding/margins */
  .plushie-img-wrap {
    margin-bottom: 16px !important;
  }
  /* ---- FIX #10: "Built thoughtfully" section \u2014 tighten boxes only ---- */
  section[class*="why"] {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }

  .why-grid,
  .why-section .why-grid {
    gap: 12px !important;
  }

  .why-grid > * {
    padding: 16px !important;
  }


  /* ---- FIX #11: Reviews section \u2014 tighten boxes only ---- */
  .reviews-section {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }

  .reviews-section .review-card,
  .reviews-section [class*="review-card"] {
    padding: 16px !important;
    margin-bottom: 12px !important;
  }


  /* ---- FIX #12: Fine Print section \u2014 tighten boxes only ---- */
  section[class*="shipping"] {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }

  .about-section .wrap > div > *,
.about-section [class*="card"] {
  padding: 16px !important;
  margin-bottom: 12px !important;
}
  }

  #mobile-nav-panel a {
    display: block;
    padding: 12px 20px;
    color: var(--cream, #fff);
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

 #mobile-nav-panel a:last-child {
    border-bottom: none;
  }

  #mobile-nav-panel a:active {
    background: rgba(255,255,255,.08);
  }

  #mobile-nav-panel a:last-child {
    border-bottom: none;
  }


  /* ---- Backdrop ---- */
  #mobile-nav-backdrop {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 80;
  }

  body.mobile-nav-open #mobile-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }


  /* Prevent page scrolling while menu is open */
  body.mobile-nav-open {
    overflow: hidden;
  }

}
/* ========================================
   BOOKS PAGE - mobile fixes
   ======================================== */
@media (max-width: 768px) {

  /* 1. Filter pills — tighten vertical spacing */
  .filter-bar {
    margin-top: 16px !important;
    margin-bottom: 12px !important;
    gap: 8px !important;
  }
  .filter-note {
    margin-top: 8px !important;
    margin-bottom: 16px !important;
  }

  /* 2 & 3. Book status badges — move above the cover instead of overlapping */
  .book-card-cover-wrap {
    position: relative !important;
    padding-top: 44px !important;
  }
  .book-card-status {
    position: static !important;
    display: inline-block !important;
    margin: 0 auto 10px !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
  }

  /* 4. Bundle cards — tighten bottom padding on colored background */
  .bundle-cta {
    padding-bottom: 18px !important;
  }
  .bundle-stack {
    margin-top: 16px !important;
    margin-bottom: 0 !important;
  }

  /* 5. Trust strip — center-align items */
  .trust-strip {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .trust-strip span {
    justify-content: center !important;
  }

}
