/* Playful animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Nico: jelly wobble — playful squish like a bouncy dragon */
@keyframes jelly-wobble {
  0% {
    transform: scale(1, 1);
  }
  20% {
    transform: scale(0.85, 1.15);
  }
  40% {
    transform: scale(1.15, 0.85);
  }
  60% {
    transform: scale(0.95, 1.05);
  }
  80% {
    transform: scale(1.05, 0.95);
  }
  100% {
    transform: scale(1, 1);
  }
}

/* Lion: roar shake — fierce scale-up with a mane shake */
@keyframes roar-shake {
  0% {
    transform: scale(1) rotate(0deg);
  }
  15% {
    transform: scale(1.2) rotate(-3deg);
  }
  30% {
    transform: scale(1.2) rotate(3deg);
  }
  45% {
    transform: scale(1.2) rotate(-2deg);
  }
  60% {
    transform: scale(1.15) rotate(2deg);
  }
  80% {
    transform: scale(1.05) rotate(-1deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

/* Footer Nico: backflip — Y-axis 360 flip */
@keyframes backflip {
  0% {
    transform: scale(1) rotateY(0deg);
  }
  50% {
    transform: scale(1.1) rotateY(180deg);
  }
  100% {
    transform: scale(1) rotateY(360deg);
  }
}

@keyframes float-gentle {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-5px) rotate(1deg);
  }
  66% {
    transform: translateY(-2px) rotate(-1deg);
  }
}

:root {
  --color-primary: #0694df;
  --color-primary-dark: #0c4493;
  --color-bg: #edeff7;
  --color-border: #e9eaf7;
  --color-text: #333;
  --color-text-light: #4d4d4d;
  --color-text-muted: #717171;
  --color-text-book: #2f4f4f;
  --color-white: #ffffff;
  --max-width: 900px;
  --radius: 10px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  background: var(--color-bg) url("bg.png") repeat;
  background-size: auto;
  color: var(--color-text);
}

header {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: 2rem 2rem 0.8rem 2rem;
  font-size: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.header-left,
.header-right,
.header-right-mobile {
  width: 30%;
  max-width: 230px;
  margin: 2rem 5%;
  animation: float-gentle 4s ease-in-out infinite;
}

.header-right,
.header-right-mobile {
  animation-delay: -1.5s;
}

.header-left:hover {
  animation: jelly-wobble 0.6s ease-in-out;
  cursor: pointer;
}

.header-right:hover,
.header-right-mobile:hover {
  animation: roar-shake 0.7s ease-in-out;
  cursor: pointer;
}

.header-right-mobile {
  display: none;
}

.header-content {
  flex-grow: 1;
}

header h1,
header h2,
header .header-lead {
  margin: 0;
  padding: 0;
}

header h1 {
  font-family: "Baloo 2", "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

header .header-lead {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.85;
  letter-spacing: 0.05em;
}

header h2 {
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

nav {
  background: var(--color-primary-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav a {
  color: var(--color-white);
  margin: 0 0.9rem;
  text-decoration: none;
  font-weight: normal;
  font-size: 1.2rem;
  white-space: nowrap;
  opacity: 0.9;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  position: relative;
  padding-bottom: 2px;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-white);
  border-radius: 1px;
  transition: width 0.25s ease;
}

nav a:hover::after {
  width: 100%;
}

.nav-icon svg {
  width: 22px;
  height: 22px;
}

.nav-icon::after {
  display: none;
}

.nav-icon:hover svg {
  transform: scale(1.15);
  transition: transform 0.2s ease;
}

nav a:active,
nav a:visited,
nav a:visited:active {
  color: var(--color-white);
}

nav a:hover {
  opacity: 1;
  color: var(--color-white);
}

nav a:focus-visible {
  opacity: 1;
  outline: 2px solid white;
  outline-offset: 2px;
}

section {
  padding: 1rem;
  max-width: var(--max-width);
  margin: auto;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  margin-top: 3rem;
  scroll-margin-top: 3rem;
}

section.nested {
  padding: 0.6rem 0 0 0;
  box-shadow: none;
  margin-top: 0;
  border-top: 1px solid var(--color-border);
}

#meine-buecher {
  padding: 1rem 1rem 1.5rem;
  margin-top: 3rem;
  border-radius: var(--radius);
}

#meine-buecher > p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.section-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.section-overview-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  width: calc(20% - 1.5rem);
  min-width: 100px;
}

.section-overview-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  transition: transform 0.25s ease;
}

.section-overview-item:hover img {
  transform: scale(1.05) rotate(-1.5deg);
}

.section-overview-item span {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--color-text-light);
  text-align: center;
  line-height: 1.2;
  transition: color 0.2s;
}

.section-overview-item:hover span {
  color: var(--color-primary-dark);
}

.book-card {
  scroll-margin-top: 3.5rem;
}

.book-card-label {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-primary);
  margin: 0 0 0.1rem;
}

.book-card-label a {
  color: inherit;
  text-decoration: none;
}

.book-card-label a:hover {
  opacity: 0.7;
}

.sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: var(--color-primary-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  padding: 0.5rem max(1rem, calc((100vw - var(--max-width)) / 2));
  transform: translateY(-100%);
  transition: transform 0.25s ease;
  gap: 0.5rem;
}

.sticky-bar.visible {
  transform: translateY(0);
}

.sticky-bar-icon {
  height: 1.6rem;
  width: auto;
  border-radius: 0;
  cursor: pointer;
  flex-shrink: 0;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.sticky-bar-icon:hover {
  opacity: 1;
}

.sticky-bar-sep {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  flex-shrink: 0;
  margin: 0 0.3rem;
}

.sticky-bar-section {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--color-white);
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.sticky-bar-link {
  color: var(--color-white);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.sticky-bar-link:hover,
.sticky-bar-link:visited,
.sticky-bar-link:active {
  color: var(--color-white);
  text-decoration: none;
}

.sticky-bar-link:hover {
  opacity: 1;
}

.sticky-bar-link:focus-visible {
  opacity: 1;
  outline: 2px solid white;
  outline-offset: 2px;
}

.sticky-bar-link-last {
  opacity: 1;
  font-weight: 500;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-bar-mail {
  color: var(--color-white);
  text-decoration: none;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
  padding: 0 0.1rem;
  display: flex;
  align-items: center;
}

.sticky-bar-shop {
  color: var(--color-white);
  text-decoration: none;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
}

.sticky-bar-shop svg {
  width: 16px;
  height: 16px;
}

.sticky-bar-shop:hover {
  opacity: 1;
}

.sticky-bar-shop:visited,
.sticky-bar-shop:active {
  color: var(--color-white);
}

.sticky-bar-shop:focus-visible {
  opacity: 1;
  outline: 2px solid white;
  outline-offset: 2px;
}

.sticky-bar-mail svg {
  width: 16px;
  height: 16px;
}

.sticky-bar-mail:hover {
  opacity: 1;
}

.sticky-bar-mail:visited,
.sticky-bar-mail:active {
  color: var(--color-white);
}

.sticky-bar-mail:focus-visible {
  opacity: 1;
  outline: 2px solid white;
  outline-offset: 2px;
}

.sticky-bar-btn {
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  flex-shrink: 0;
  padding: 0 0.2rem;
  opacity: 0.7;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
}

.sticky-bar-btn svg {
  width: 18px;
  height: 18px;
}

.sticky-bar-btn:hover {
  opacity: 1;
}

.sticky-bar-btn:focus-visible {
  opacity: 1;
  outline: 2px solid white;
  outline-offset: 2px;
}

footer {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  margin-top: 3rem;
  padding: 4rem;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

footer .footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

footer .footer-text {
  text-align: left;
}

footer h2 {
  margin: 0 0 0.8rem 0;
  padding: 0;
  text-shadow: none;
  border-bottom: none;
}

footer p {
  padding: 0;
  margin: 0 0 0.5rem 0;
  line-height: 1.6;
}

.footer-email {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.3rem;
}

.footer-email-icon {
  opacity: 0.8;
  display: flex;
  align-items: center;
}

.footer-email-icon svg {
  width: 18px;
  height: 18px;
}

.footer-shops {
  margin-top: 1rem;
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.5;
}

.footer-shops a {
  opacity: 1;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}

.footer-shops a:hover {
  border-bottom-color: rgba(255, 255, 255, 0.9);
}

footer .footer-copy {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  opacity: 0.5;
}

footer a,
footer a:hover,
footer a:visited,
footer a:active {
  color: white;
  text-decoration: none;
}

.footer-email a {
  position: relative;
  padding-bottom: 2px;
}

.footer-email a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-white);
  border-radius: 1px;
  transition: width 0.25s ease;
}

.footer-email a:hover::after {
  width: 100%;
}

.footer-dragon {
  height: 140px;
  width: auto;
  border-radius: 0;
  cursor: pointer;
  opacity: 0.9;
  transition:
    transform 0.2s ease,
    opacity 0.3s;
  flex-shrink: 0;
  animation: float 3s ease-in-out infinite;
}

.footer-dragon:hover {
  animation: backflip 0.7s ease-in-out;
  opacity: 1;
}

main img,
.about img,
.gallery img {
  border-radius: 8px;
}

.hidden {
  display: none !important;
}

.book {
  display: flex;
  flex-wrap: wrap;
  padding: 1.7rem 0;
  scroll-margin-top: 3.5rem;
}

.book:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}

.book:last-child {
  padding-bottom: 0.5rem;
}

.about {
  display: flex;
  align-items: center;
}

.about div {
  margin-right: 1rem;
}

.about-contact {
  margin-top: 0.5rem;
}

.about-contact a {
  color: var(--color-primary-dark);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.about-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.about-contact a:hover {
  opacity: 1;
}

.about img {
  display: block;
}

.book-container {
  width: 50%;
  max-width: 255px;
  margin-right: 2rem;
}

.book img {
  max-width: 255px;
  height: auto;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.book img:hover {
  transform: scale(1.05) rotate(-1.5deg);
}

.about img {
  width: 50%;
  max-width: 220px;
}

.book-details {
  padding-right: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  color: var(--color-text-book);
}

.book-title {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: var(--color-text-book);
}

.description {
  margin-bottom: 0.9rem;
}

.book-meta {
  margin-top: auto;
  margin-bottom: 0.9rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.book-order {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.order-button,
.order-button:visited,
.order-button:active {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding: 0.45rem 0.8rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 400;
  font-size: 0.9rem;
  transition:
    background 0.2s,
    transform 0.2s;
}

.order-button svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.order-button svg:last-child {
  width: 13px;
  height: 13px;
  opacity: 0.6;
}

.order-button:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.order-button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

a,
a:active,
a:visited,
a:visited:active {
  color: var(--color-primary-dark);
}

h1 {
  font-weight: 500;
}

h2 {
  font-weight: 600;
}

section h2 {
  color: var(--color-primary-dark);
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 1.8rem;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
}

.gallery {
  margin-top: 2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.gallery img {
  height: 200px;
  width: auto;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.gallery img:hover {
  transform: scale(1.05) rotate(-1.5deg);
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.overlay div {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay img {
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 0;
}

.close {
  position: absolute;
  top: 16px;
  right: 16px;
  color: white;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 101;
}

.close svg {
  width: 22px;
  height: 22px;
}

.close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.close:focus-visible {
  outline: 2px solid white;
  outline-offset: 4px;
}

.book-thumbs-wrap {
  position: relative;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.8rem;
  margin-bottom: 0.5rem;
}

.book-thumbs-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0.8rem;
  width: 50px;
  background: linear-gradient(to right, transparent, var(--color-white));
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s;
  z-index: 2;
}

.book-thumbs-wrap.scrolled-end::after {
  opacity: 0;
}

.book-thumbs-wrap.scrolled-start::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0.8rem;
  width: 50px;
  background: linear-gradient(to left, transparent, var(--color-white));
  pointer-events: none;
  z-index: 2;
}

.book-thumbs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  font-size: 1rem;
  color: var(--color-primary-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.book-thumbs-wrap:hover .book-thumbs-arrow {
  opacity: 1;
}

.book-thumbs-arrow:hover {
  background: var(--color-white);
  border-color: var(--color-primary-dark);
}

.book-thumbs-arrow:focus-visible {
  opacity: 1;
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.book-thumbs-arrow.arrow-left {
  left: 4px;
}

.book-thumbs-arrow.arrow-right {
  right: 4px;
}

.book-thumbs-wrap.scrolled-end .arrow-right,
.book-thumbs-wrap:not(.scrolled-start) .arrow-left {
  opacity: 0 !important;
  pointer-events: none;
}

.book-thumbs {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  gap: 0.6rem;
  padding: 6px 2px;
  cursor: grab;
}

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

.book-thumbs.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.book-thumb {
  object-fit: contain;
  height: 114px;
  width: auto;
  flex-shrink: 0;
  border-radius: 4px;
  cursor: pointer;

  border: 2px solid transparent;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.25s ease,
    border-color 0.2s,
    box-shadow 0.2s;
}

.book-thumb:hover {
  transform: scale(1.05) rotate(-1.5deg);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.book-thumb.active {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(6, 148, 223, 0.3);
}

.book-thumb-container {
  position: relative;
  flex-shrink: 0;
}

.book-thumb-tooltip {
  position: absolute;
  bottom: -1.6rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary-dark);
  color: var(--color-white);
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  z-index: 5;
}

.book-thumb-container:hover .book-thumb-tooltip {
  opacity: 1;
}

@media (max-width: 900px) {
  header {
    flex-wrap: wrap;
    padding: 2rem;
    justify-content: center;
  }

  header img.header-right {
    display: none;
  }

  header img.header-right-mobile,
  img.header-left {
    display: block;
    margin: 0 0.5rem;
    width: 35%;
    animation: none;
  }

  header h1 {
    line-height: 1;
    font-size: 2rem;
    margin-top: 1rem;
  }

  header .header-lead {
    font-size: 0.95rem;
    margin-top: 0.3rem;
  }

  header h2 {
    line-height: 1;
    font-size: 1.3rem;
  }

  h2 {
    text-align: center;
  }

  nav {
    padding: 0.5rem;
  }

  nav a {
    margin: 0 0.4rem;
    font-size: 0.95rem;
  }

  .nav-icon svg {
    width: 18px;
    height: 18px;
  }

  section {
    margin-left: 0.4rem;
    margin-right: 0.4rem;
  }

  .about {
    flex-wrap: wrap;
    margin-right: 0;
  }

  .about div {
    margin-right: 0;
  }

  .about img {
    margin: 0 auto;
    width: 55%;
    max-width: 300px;
  }

  .book-card-label {
    text-align: center;
  }

  .book {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .book img {
    margin-bottom: 1.2rem;
  }

  .book-container {
    width: 100%;
    margin-right: 0;
  }

  .book-details {
    text-align: center;
    padding: 0.1rem;
  }

  .book-meta {
    font-size: 0.8rem;
  }

  .book-order {
    padding-top: 1rem;
    justify-content: center;
  }

  .book-thumb {
    height: 88px;
  }

  .book-thumbs-arrow {
    display: none;
  }

  .book-thumb-tooltip {
    display: none;
  }

  .gallery img {
    height: 150px;
  }

  footer {
    padding: 1.5rem 1rem;
  }

  footer .footer-inner {
    flex-direction: column;
    text-align: center;
  }

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

  .footer-email {
    justify-content: center;
  }

  .footer-dragon {
    height: 100px;
  }

  .overlay div {
    max-width: 95%;
  }

  .sticky-bar {
    padding: 0.4rem 0.8rem;
  }

  .sticky-bar-section {
    font-size: 0.78rem;
  }

  .sticky-bar-sep {
    font-size: 0.78rem;
  }

  .sticky-bar-icon {
    height: 1.4rem;
  }

  .section-overview {
    justify-content: center;
  }

  .section-overview-item {
    width: calc(30% - 1rem);
    min-width: 80px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-left,
  .header-right,
  .header-right-mobile,
  .footer-dragon {
    animation: none;
  }

  .header-left:hover,
  .header-right:hover,
  .header-right-mobile:hover,
  .footer-dragon:hover,
  .book img:hover,
  .gallery img:hover,
  .section-overview-item:hover img,
  .book-thumb:hover {
    animation: none;
    transform: none;
  }
}
