:root {
  --book-ink: #102033;
  --book-navy: #173a61;
  --book-navy-deep: #061424;
  --book-navy-mid: #0b2449;
  --book-cyan: #19b8d8;
  --book-cyan-soft: #a9e9f4;
  --book-gold: #f2be42;
  --book-gold-strong: #ffc94d;
  --book-green: #1fae5b;
  --book-white: #ffffff;
  --book-muted: #b8c8d8;
  --book-line: rgba(180, 207, 227, 0.24);
  --book-surface: rgba(255, 255, 255, 0.045);
  --book-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  --book-radius: 18px;
  --book-container: min(1180px, calc(100% - 40px));
  --book-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.book-store {
  margin: 0;
  color: var(--book-white);
  background: var(--book-navy-deep);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.book-store img {
  display: block;
  max-width: 100%;
}

body.book-store a {
  color: inherit;
}

.book-skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--book-ink);
  background: var(--book-white);
  transform: translateY(-150%);
  transition: transform 180ms ease-out;
}

.book-skip-link:focus {
  transform: translateY(0);
}

.book-container {
  width: var(--book-container);
  margin-inline: auto;
}

.book-site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(6, 20, 36, 0.86);
  backdrop-filter: blur(18px);
  transition: border-color 220ms ease-out, box-shadow 220ms ease-out;
}

.book-site-header.is-scrolled {
  border-bottom-color: var(--book-line);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.book-nav {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.book-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.book-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.book-brand strong,
.book-brand span {
  display: block;
}

.book-brand strong {
  font-size: 20px;
  letter-spacing: -0.02em;
}

.book-brand span {
  margin-top: 2px;
  color: var(--book-cyan-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.book-nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.book-nav-links a {
  color: #dce8f2 !important;
  -webkit-text-fill-color: #dce8f2 !important;
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease-out;
}

.book-nav-links a:hover {
  color: var(--book-cyan) !important;
  -webkit-text-fill-color: var(--book-cyan) !important;
}

.book-nav-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1.5px solid var(--book-gold);
  border-radius: 9px;
  color: var(--book-gold) !important;
}

.book-nav-links .book-nav-cta {
  color: var(--book-gold) !important;
  -webkit-text-fill-color: var(--book-gold) !important;
}

.book-nav-cta:hover {
  color: var(--book-ink) !important;
  background: var(--book-gold);
}

.book-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 790px;
  padding: 78px 0 88px;
  background:
    radial-gradient(circle at 10% 44%, rgba(25, 184, 216, 0.14), transparent 33%),
    radial-gradient(circle at 92% 35%, rgba(23, 58, 97, 0.52), transparent 34%),
    linear-gradient(145deg, #071b35 0%, #061424 56%, #04101d 100%);
}

.book-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -235px;
  top: 140px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(242, 190, 66, 0.19);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(242, 190, 66, 0.018);
}

.book-hero-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(450px, 1fr);
  align-items: center;
  gap: clamp(64px, 8vw, 118px);
}

.book-product-stage {
  position: relative;
  display: grid;
  min-height: 590px;
  place-items: center;
  perspective: 1800px;
}

.book-product-stage::after {
  content: "";
  position: absolute;
  z-index: -2;
  bottom: 16px;
  width: 82%;
  height: 74px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  filter: blur(30px);
}

.book-product-mockup {
  position: relative;
  width: min(420px, 90%);
  aspect-ratio: 1600 / 2263;
  transform: rotateY(10deg) rotateX(1.5deg) rotateZ(-0.8deg);
  transform-origin: center;
  transition: transform 420ms var(--book-ease);
}

.book-product-stage:hover .book-product-mockup {
  transform: rotateY(5deg) rotateX(0) rotateZ(0) translateY(-8px);
}

.book-product-mockup::before {
  content: "GM CAR A/C SERVICE MANUAL — PREMIUM EDITION";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: -24px;
  width: 28px;
  padding-top: 34px;
  border-radius: 6px 0 0 6px;
  color: #cad8e4;
  background: linear-gradient(90deg, #06111e, #193653 64%, #0b1e32);
  box-shadow: inset -1px 0 rgba(255, 255, 255, 0.18);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.book-product-mockup::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 10px -16px -12px 16px;
  border-radius: 4px;
  background: #020a12;
  box-shadow: var(--book-shadow);
}

.book-product-mockup img {
  width: 100%;
  height: 100%;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: -5px 0 0 #d7e0e6, 0 28px 72px rgba(0, 0, 0, 0.42);
}

.book-hero-copy h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(52px, 5.6vw, 82px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.book-hero-copy h1::after {
  content: "";
  display: block;
  width: 92px;
  height: 5px;
  margin: 30px 0;
  border-radius: 999px;
  background: var(--book-gold);
}

.book-hero-tagline {
  max-width: 610px;
  margin: 0;
  color: var(--book-cyan);
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.book-hero-summary {
  max-width: 610px;
  margin: 23px 0 0;
  color: #d2dce7;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
}

.book-price-lockup {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  padding: 14px 20px;
  border: 1.5px solid var(--book-gold);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
}

.book-price-lockup svg {
  width: 38px;
  color: var(--book-gold);
}

.book-price-lockup span,
.book-price-lockup strong {
  display: block;
}

.book-price-lockup span {
  color: #dbe6f0;
  font-size: 15px;
  font-weight: 700;
}

.book-price-lockup strong {
  margin-top: -2px;
  color: var(--book-gold);
  font-size: 37px;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.book-hero-actions {
  display: grid;
  max-width: 510px;
  gap: 13px;
  margin-top: 20px;
}

.book-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 10px;
  font: inherit;
  font-size: 17px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms var(--book-ease), box-shadow 180ms ease-out, background-color 180ms ease-out;
}

body.book-store a.book-button.btn {
  font-size: 17px !important;
  font-weight: 800 !important;
}

.book-button svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.book-button:hover {
  transform: translateY(-2px);
}

.book-button:active {
  transform: translateY(0) scale(0.99);
}

.book-button--pay {
  color: #071729 !important;
  -webkit-text-fill-color: #071729 !important;
  background: linear-gradient(180deg, var(--book-gold-strong), var(--book-gold));
  box-shadow: 0 12px 30px rgba(242, 190, 66, 0.17);
}

.book-button--pay:hover {
  box-shadow: 0 16px 36px rgba(242, 190, 66, 0.25);
}

.book-button--whatsapp {
  color: var(--book-white) !important;
  -webkit-text-fill-color: var(--book-white) !important;
  background: var(--book-green);
  box-shadow: 0 12px 30px rgba(31, 174, 91, 0.15);
}

.book-button--outline {
  color: var(--book-white) !important;
  -webkit-text-fill-color: var(--book-white) !important;
  border-color: var(--book-line);
  background: var(--book-surface);
}

body.book-store a.book-button.btn.book-button--pay {
  color: #071729 !important;
  -webkit-text-fill-color: #071729 !important;
  border-color: transparent !important;
  background: linear-gradient(180deg, var(--book-gold-strong), var(--book-gold)) !important;
}

body.book-store a.book-button.btn.book-button--whatsapp {
  color: var(--book-white) !important;
  -webkit-text-fill-color: var(--book-white) !important;
  border-color: transparent !important;
  background: var(--book-green) !important;
}

.book-hero-note {
  margin: 18px 0 0;
  color: #91a6ba;
  font-size: 13px;
}

.book-proof-rail {
  position: relative;
  margin-top: -1px;
  border-top: 1px solid var(--book-line);
  border-bottom: 1px solid var(--book-line);
  background: #081a2f;
}

.book-proof-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.book-proof-item {
  padding: 24px 30px;
  color: #dce8f2;
  font-size: 15px;
  font-weight: 650;
  text-align: center;
}

.book-proof-item + .book-proof-item {
  border-left: 1px solid var(--book-line);
}

.book-proof-item strong {
  color: var(--book-cyan);
}

.book-section {
  padding: 112px 0;
}

.book-section h2 {
  margin: 0;
  font-size: clamp(40px, 4.3vw, 64px);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.book-section-lede {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--book-muted);
  font-size: 20px;
}

.book-inside {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 35%, rgba(23, 58, 97, 0.5), transparent 34%),
    linear-gradient(180deg, #07182d, #061424);
}

.book-inside-grid {
  display: grid;
  grid-template-columns: minmax(490px, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(60px, 8vw, 104px);
}

.book-spread {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 490px;
  border: 10px solid #112d4e;
  border-radius: 12px 12px 18px 18px;
  background: #e9eef2;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.38);
  transform: perspective(1500px) rotateX(3deg) rotateY(-2deg);
}

.book-spread::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 22px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(255, 255, 255, 0.65), rgba(0, 0, 0, 0.13));
  transform: translateX(-50%);
  opacity: 0.6;
}

.book-page {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 30px 24px 24px;
  color: var(--book-ink);
  background: #f7f9fb;
}

.book-page:first-child {
  border-radius: 3px 0 0 8px;
}

.book-page:last-child {
  border-radius: 0 3px 8px 0;
}

.book-page-label {
  color: #147ca1;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.book-page h3 {
  margin: 9px 0 18px;
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.book-page img {
  width: 100%;
  height: 252px;
  border-radius: 6px;
  object-fit: cover;
}

.book-page p {
  margin: 16px 0 0;
  color: #4d6276;
  font-size: 12px;
  line-height: 1.45;
}

.book-contents-copy h2 span {
  color: var(--book-gold);
}

.book-contents-list {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.book-contents-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: start;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--book-line);
  color: #e5edf4;
  font-size: 16px;
  font-weight: 650;
}

.book-contents-list b {
  color: var(--book-gold);
  font-size: 22px;
  line-height: 1.3;
}

.book-audience {
  padding: 0 0 112px;
  background: var(--book-navy-deep);
}

.book-audience-inner {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  align-items: center;
  border-top: 1px solid var(--book-line);
  border-bottom: 1px solid var(--book-line);
}

.book-audience-heading,
.book-audience-item {
  min-height: 150px;
  padding: 34px 28px;
}

.book-audience-heading h2 {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.book-audience-heading h2 span {
  color: var(--book-gold);
}

.book-audience-item {
  display: flex;
  align-items: center;
  gap: 18px;
  border-left: 1px solid var(--book-line);
  color: #e7eef5;
  font-size: 16px;
  font-weight: 750;
}

.book-audience-icon {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(242, 190, 66, 0.65);
  border-radius: 50%;
  color: var(--book-cyan);
}

.book-audience-icon svg {
  width: 29px;
  height: 29px;
}

.book-buy {
  background:
    radial-gradient(circle at 50% 0%, rgba(23, 58, 97, 0.48), transparent 38%),
    #061424;
}

.book-buy-heading {
  text-align: center;
}

.book-buy-heading::after,
.book-faq h2::after {
  content: "";
  display: block;
  width: 82px;
  height: 4px;
  margin: 25px auto 0;
  border-radius: 99px;
  background: var(--book-gold);
}

.book-editions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1050px;
  margin: 64px auto 0;
  border-top: 1px solid var(--book-line);
  border-bottom: 1px solid var(--book-line);
}

.book-edition {
  padding: 48px 56px;
}

.book-edition + .book-edition {
  border-left: 1px solid var(--book-line);
}

.book-edition-head {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.book-edition-icon {
  display: grid;
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--book-gold);
}

.book-edition-icon svg {
  width: 68px;
  height: 68px;
}

.book-edition h3 {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.035em;
}

.book-edition-price {
  margin: 3px 0 0;
  color: var(--book-gold);
  font-size: 30px;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.book-edition-features {
  display: grid;
  gap: 14px;
  margin: 27px 0 30px 100px;
  padding: 0;
  list-style: none;
}

.book-edition-features li {
  position: relative;
  color: #dbe6ef;
  font-size: 15px;
}

.book-edition-features li::before {
  content: "✓";
  position: absolute;
  left: -28px;
  color: var(--book-cyan);
  font-weight: 900;
}

.book-edition .book-button {
  width: 100%;
}

.book-trust-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 30px;
  margin-top: 34px;
  color: #a9bac9;
  font-size: 14px;
  text-align: center;
}

.book-trust-note span + span::before {
  content: "·";
  margin-right: 30px;
  color: var(--book-gold);
}

.book-faq {
  padding-top: 100px;
}

.book-faq h2 {
  font-size: clamp(36px, 4vw, 54px);
  text-align: center;
}

.book-faq-list {
  max-width: 980px;
  margin: 50px auto 0;
  border-top: 1px solid var(--book-line);
}

.book-faq details {
  border-bottom: 1px solid var(--book-line);
}

.book-faq summary {
  position: relative;
  padding: 23px 54px 23px 4px;
  color: #edf3f8;
  cursor: pointer;
  font-size: 18px;
  font-weight: 720;
  list-style: none;
}

.book-faq summary::-webkit-details-marker {
  display: none;
}

.book-faq summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  color: var(--book-cyan);
  font-size: 28px;
  font-weight: 400;
  transform: translateY(-50%);
  transition: transform 180ms ease-out;
}

.book-faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.book-faq details p {
  max-width: 830px;
  margin: -4px 0 0;
  padding: 0 52px 25px 4px;
  color: var(--book-muted);
}

.book-disclaimer {
  max-width: 920px;
  margin: 40px auto 0;
  color: #8398ab;
  font-size: 13px;
  text-align: center;
}

.book-footer {
  border-top: 1px solid var(--book-line);
  background: #04101d;
}

.book-footer-inner {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  align-items: center;
  gap: 34px;
  min-height: 170px;
}

.book-footer-contact {
  padding-left: 34px;
  border-left: 1px solid var(--book-line);
  color: #d1deea;
  font-size: 15px;
}

.book-footer-contact a {
  text-decoration: none;
}

.book-footer-contact a:hover {
  color: var(--book-cyan);
}

.book-footer-contact small {
  display: block;
  margin-top: 5px;
  color: #8298ab;
}

.book-mobile-bar {
  position: fixed;
  z-index: 110;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--book-line);
  background: rgba(6, 20, 36, 0.95);
  backdrop-filter: blur(16px);
}

.book-mobile-bar .book-button {
  width: 100%;
  min-height: 52px;
}

body.book-store .book-mobile-bar a.book-button.btn [data-ebook-price] {
  color: #071729 !important;
  -webkit-text-fill-color: #071729 !important;
}

.book-button:focus-visible,
.book-nav-links a:focus-visible,
.book-brand:focus-visible,
.book-faq summary:focus-visible {
  outline: 3px solid var(--book-cyan);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .book-nav-links a:not(.book-nav-cta) {
    display: none;
  }

  .book-hero-grid,
  .book-inside-grid {
    grid-template-columns: 1fr;
  }

  .book-hero {
    padding-top: 46px;
  }

  .book-product-stage {
    min-height: 540px;
  }

  .book-hero-copy {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
  }

  .book-hero-copy h1,
  .book-hero-tagline,
  .book-hero-summary {
    margin-inline: auto;
  }

  .book-hero-copy h1::after {
    margin-inline: auto;
  }

  .book-price-lockup,
  .book-hero-actions {
    margin-inline: auto;
  }

  .book-spread {
    order: 2;
  }

  .book-contents-copy {
    order: 1;
  }

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

  .book-audience-heading {
    grid-column: 1 / -1;
    min-height: auto;
    text-align: center;
  }

  .book-audience-item:nth-child(2) {
    border-left: 0;
  }

  .book-audience-item:last-child {
    grid-column: 1 / -1;
    justify-content: center;
    border-top: 1px solid var(--book-line);
    border-left: 0;
  }

  .book-edition {
    padding-inline: 38px;
  }

  .book-edition-features {
    margin-left: 84px;
  }
}

@media (max-width: 720px) {
  :root {
    --book-container: min(100% - 28px, 620px);
  }

  body.book-store {
    padding-bottom: 72px;
    font-size: 16px;
  }

  .book-nav {
    min-height: 74px;
  }

  .book-brand img {
    width: 44px;
    height: 44px;
  }

  .book-brand strong {
    font-size: 16px;
  }

  .book-brand span {
    font-size: 8px;
  }

  .book-nav-cta {
    display: none !important;
  }

  .book-hero {
    min-height: auto;
    padding: 34px 0 74px;
  }

  .book-product-stage {
    min-height: 455px;
  }

  .book-product-mockup {
    width: min(310px, 82%);
  }

  .book-hero-grid {
    gap: 36px;
  }

  .book-hero-copy h1 {
    font-size: clamp(45px, 13vw, 64px);
  }

  .book-hero-tagline {
    font-size: 27px;
  }

  .book-price-lockup {
    width: 100%;
    justify-content: center;
  }

  .book-button {
    min-height: 56px;
    padding-inline: 18px;
    font-size: 15px;
  }

  .book-proof-inner {
    grid-template-columns: 1fr;
  }

  .book-proof-item {
    padding: 17px 20px;
  }

  .book-proof-item + .book-proof-item {
    border-top: 1px solid var(--book-line);
    border-left: 0;
  }

  .book-section {
    padding: 78px 0;
  }

  .book-section-lede {
    font-size: 18px;
  }

  .book-inside-grid {
    gap: 45px;
  }

  .book-spread {
    grid-template-columns: 1fr;
    min-height: 0;
    transform: none;
  }

  .book-spread::after,
  .book-page:last-child {
    display: none;
  }

  .book-page img {
    height: 250px;
  }

  .book-contents-list li {
    grid-template-columns: 38px 1fr;
    gap: 10px;
    font-size: 15px;
  }

  .book-audience {
    padding-bottom: 78px;
  }

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

  .book-audience-heading,
  .book-audience-item,
  .book-audience-item:last-child {
    grid-column: auto;
    min-height: 106px;
    justify-content: flex-start;
    border-top: 1px solid var(--book-line);
    border-left: 0;
  }

  .book-audience-heading {
    border-top: 0;
    text-align: left;
  }

  .book-editions {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .book-edition {
    padding: 40px 6px;
  }

  .book-edition + .book-edition {
    border-top: 1px solid var(--book-line);
    border-left: 0;
  }

  .book-edition-head {
    gap: 15px;
  }

  .book-edition-icon {
    width: 60px;
    height: 60px;
  }

  .book-edition-icon svg {
    width: 54px;
    height: 54px;
  }

  .book-edition h3 {
    font-size: 29px;
  }

  .book-edition-price {
    font-size: 25px;
  }

  .book-edition-features {
    margin-left: 82px;
  }

  .book-trust-note {
    display: grid;
    gap: 7px;
  }

  .book-trust-note span + span::before {
    display: none;
  }

  .book-faq {
    padding-top: 78px;
  }

  .book-faq summary {
    font-size: 16px;
  }

  .book-footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 42px 0;
  }

  .book-footer-contact {
    padding: 0;
    border-left: 0;
  }

  .book-mobile-bar {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
