:root {
  --color-primary: #ea5b0c;
  --color-white: #fff;
  --color-grey-light: #f5f5f5;
  --color-grey: #ececec;
  --color-black: #111111;
}

body {
  padding-top: 86px;
  color: var(--color-black);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  background: var(--color-white);
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -45px;
  left: 0;
  height: 46px;
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='90' viewBox='0 0 1440 90' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' d='M0 0H1440V42C1320 84 1200 84 1080 42S840 0 720 42 480 84 360 42 120 0 0 42Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

.main-navbar {
  position: relative;
  z-index: 2;
  background: transparent;
}

.main-navbar .container {
  position: relative;
  min-height: 78px;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  color: var(--color-black);
  font-weight: 800;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0;
  transform: translateY(0);
  transition:
    top 0.35s ease,
    transform 0.35s ease;
  z-index: 3;
}

.navbar-brand:hover,
.navbar-brand:focus {
  color: var(--color-black);
}

.brand-logo {
  display: block;
  width: 145px;
  height: auto;
  transition:
    width 0.35s ease,
    transform 0.35s ease;
  transform-origin: center center;
}

.site-header.is-compact .navbar-brand {
  top: 50%;
  transform: translateY(-50%);
}

.site-header.is-compact .brand-logo {
  width: 68px;
}

.main-navbar .nav-link {
  position: relative;
  padding-top: 0;
  font-weight: 400;
  color: var(--color-black);
  padding-bottom: 0;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    text-shadow 0.2s ease,
    transform 0.2s ease;
}

@media (min-width: 992px) {
  .main-navbar .navbar-nav {
    gap: clamp(1rem, 1.35vw, 1.75rem);
  }

  .main-navbar .navbar-nav > .nav-item {
    flex: 0 0 auto;
  }

  .main-navbar .navbar-nav > .nav-item > .nav-link {
    display: inline-flex;
    align-items: center;
    width: auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
    white-space: nowrap;
  }
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  border-left: solid 1px #000;
  color: var(--color-primary) !important;
  font-weight: 600 !important;
}

.main-navbar .navbar-nav > .nav-item > .language-switcher {
  padding-left: clamp(1rem, 1.35vw, 1.75rem) !important;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link:focus,
.main-navbar .nav-link.active {
  background: transparent;
  color: var(--color-primary);
  text-shadow:
    0.35px 0 0 currentColor,
    -0.35px 0 0 currentColor;
  transform: translateY(-1px);
}

.main-navbar .dropdown-toggle::after {
  display: none;
}

.main-navbar .dropdown-icon {
  font-size: 0.7em;
  vertical-align: 0.08em;
}

.main-navbar .dropdown-menu {
  border: 0;
  border-radius: 18px;
  background: var(--color-white);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.14);
}

.main-navbar .dropdown-menu[aria-labelledby="aboutDropdown"] {
  min-width: 14rem;
}

.main-navbar .mega-menu {
  width: min(400px, 92vw);
}

.mega-menu-title {
  margin: 0 0 1rem;
  color: var(--color-black);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.mega-menu-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.92rem;
  line-height: 1.35;
}

.mega-menu-list a {
  display: block;
  border-radius: 12px;
  color: rgba(0, 0, 0, 0.74);
  padding: 0.5rem;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    font-weight 0.2s ease;
}

.mega-menu-list a:hover,
.mega-menu-list a:focus,
.mega-menu-list a.active {
  background: rgba(234, 91, 12, 0.12);
  color: var(--color-black);
  font-weight: 600;
}

@media (min-width: 992px) and (hover: hover) {
  .main-navbar .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
  }

  .main-navbar .nav-item.dropdown:hover::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: 1rem;
  }

  .main-navbar .products-mega-dropdown .mega-menu {
    right: auto;
    left: 50%;
    transform: translateX(-28%);
  }
}

@media (max-width: 991.98px) {
  .main-navbar .mega-menu {
    width: 100%;
  }
}

.main-navbar .dropdown-item {
  border-radius: 12px;
  color: var(--color-black);
  font-size: 0.92rem;
  font-weight: 400;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    font-weight 0.2s ease;
}

.main-navbar .dropdown-item:hover,
.main-navbar .dropdown-item:focus,
.main-navbar .dropdown-item.active {
  background: rgba(234, 91, 12, 0.12);
  color: var(--color-black);
  font-weight: 600;
}

.navbar-toggler {
  border: 2px solid rgba(234, 91, 12, 0.28);
  border-radius: 16px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 4px rgba(234, 91, 12, 0.16);
}

.video-hero-section {
  position: relative;
  height: max(650px, 70vh);
  overflow: hidden;
  background: var(--color-black);
}

.video-hero-section-compact {
  height: max(600px, 60vh);
}

.video-hero-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.altri-giochi-hero {
  background: var(--color-primary);
}

.history-hero-image {
  filter: saturate(0.9) brightness(0.82);
}

.history-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(17, 17, 17, 0.7) 0%,
      rgba(17, 17, 17, 0.35) 48%,
      rgba(17, 17, 17, 0.08) 100%
    );
}

.history-hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  color: var(--color-white);
}

.history-hero-title {
  max-width: 720px;
  margin: 0 0 1rem;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.history-hero-text {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.65;
}

.history-section {
  background: linear-gradient(180deg, #ececec 0%, #ffffff 100%);
  padding: 6rem 0;
}

.history-intro {
  margin: 0 0 4rem;
  text-align: left;
}

.history-intro .section-title {
  margin-bottom: 1.3rem;
  color: var(--color-primary);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.history-story {
  margin: 0;
}

.history-story-copy {
  color: rgba(17, 17, 17, 0.76);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.85;
}

.history-story-copy p {
  margin: 0;
}

.history-story-copy p + p {
  margin-top: 1.35rem;
}

.history-story-copy strong {
  color: var(--color-black);
  font-weight: 800;
}

.history-note {
  margin: 4rem 0 0;
  border-radius: 8px;
  background: var(--color-white);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: 0 16px 38px rgba(17, 17, 17, 0.08);
}

.history-note h2 {
  margin: 0 0 0.9rem;
  color: var(--color-primary);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 900;
}

.history-note p {
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
  line-height: 1.7;
}

.video-hero-motors-logo-wrap {
  position: absolute;
  right: 0;
  bottom: clamp(1.5rem, 4vw, 1.5rem);
  left: 50%;
  z-index: 4;
  transform: translateX(-50%);
  pointer-events: none;
}

.video-hero-motors-logo {
  display: block;
  width: clamp(190px, 18vw, 300px);
  height: auto;
}

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

#homeContent {
  scroll-margin-top: 86px;
  background: linear-gradient(180deg, #ececec 0%, #ffffff 100%);
  padding-top: 6rem !important;
}

#homeContent::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 46px;
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='90' viewBox='0 0 1440 90' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0 0H1440V42C1320 84 1200 84 1080 42S840 0 720 42 480 84 360 42 120 0 0 42Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

#homeContent.license-intro-section::before {
  display: none;
}

.product-kicker {
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 22px;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
}

.section-title-dark {
  color: var(--color-black);
}

.section-title-light {
  color: var(--color-white);
}

.section-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.section-text-dark {
  color: rgba(17, 17, 17, 0.72);
}

.section-text-light {
  color: var(--color-white);
}

.grid-card-title {
  margin: 0;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.product-slide-btn {
  border: 1px solid var(--color-primary);
  border-radius: 22px;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    font-weight 0.2s ease;
  font-size: 0.9rem;
  letter-spacing: 0.04rem;
}

.product-slide-btn:hover,
.product-slide-btn:focus {
  border-color: var(--color-primary);
  background: #ffffffae;
  color: var(--color-primary);
  font-weight: 600;
}

.site-footer {
  background: var(--color-white);
  color: rgba(0, 0, 0, 0.78);
}

.footer-logo {
  width: 118px;
  height: auto;
}

.footer-company {
  color: rgba(0, 0, 0, 0.78);
  font-size: 0.92rem;
  font-style: normal;
  line-height: 1.7;
}

.footer-company strong {
  color: var(--color-black);
  font-weight: 800;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.74);
  font-size: 1.5rem;
  line-height: 1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-social-link:hover,
.footer-social-link:focus {
  color: #ff0000;
}

.footer-legal a,
.footer-list a,
.footer-list span {
  color: rgba(0, 0, 0, 0.74);
}

.footer-legal a,
.footer-list a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover,
.footer-legal a:focus,
.footer-list a:hover,
.footer-list a:focus {
  color: var(--color-primary);
}

.footer-legal {
  font-size: 0.86rem;
}

.footer-title {
  margin: 0 0 1rem;
  color: var(--color-black);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.92rem;
  line-height: 1.35;
}

.footer-mondo-mark-link {
  display: block;
  width: 180px;
  max-width: 100%;
  margin-top: 3rem;
}

.footer-mondo-mark {
  display: block;
  width: 100%;
  height: auto;
}

.toys-world-section {
  position: relative;
  overflow: visible;
  background: var(--color-white);
  z-index: 3;
  padding-bottom: 5rem;
}

.license-intro-section {
  position: relative;
  overflow: visible;
  background: var(--color-white);
  z-index: 3;
  padding: 5rem 0;
}

.license-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.license-intro-content {
  max-width: 920px;
}

.license-intro-title {
  max-width: 760px;
}

.license-intro-content .section-text + .section-text {
  margin-top: 1rem;
}

.license-intro-figure {
  margin: 0;
}

.license-intro-figure img {
  display: block;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.16);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.license-intro-slider {
  --product-slider-height: 420px;
  border-radius: 8px;
}

.license-intro-slider .motors-visual-slider {
  position: relative;
  width: 100%;
  min-height: var(--product-slider-height);
  overflow: hidden;
}

.license-intro-slider .motors-race-stage {
  position: relative;
  min-height: var(--product-slider-height);
}

.license-intro-slider .motors-visual-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--product-slider-height);
  padding: 0.75rem;
}

.license-intro-slider .motors-visual-picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 620px;
}

.license-intro-slider .motors-visual-image {
  display: block;
  width: auto;
  max-width: min(100%, 620px);
  max-height: calc(var(--product-slider-height) - 1.5rem);
  height: auto;
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: auto;
  object-fit: contain;
}

.license-intro-slider .motors-race-car {
  position: relative;
  z-index: 3;
  opacity: 1;
  transform: none;
}

.product-image-controls {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 6;
  display: flex;
  justify-content: space-between;
  padding: 0;
  pointer-events: none;
  transform: translateY(-50%);
}

.product-image-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  padding: 0;
  color: #8a8f98;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  pointer-events: auto;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.product-image-control-prev {
  transform: translateX(-1rem);
}

.product-image-control-next {
  transform: translateX(1rem);
}

.product-image-control i {
  display: none;
}

.product-image-control::before {
  content: "";
  display: block;
  width: 1.45rem;
  height: 1.45rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.product-image-control-prev::before {
  transform: rotate(-135deg);
}

.product-image-control-next::before {
  transform: rotate(45deg);
}

.product-image-control:hover,
.product-image-control:focus {
  color: #656b73;
}

.product-image-control-prev:hover,
.product-image-control-prev:focus {
  transform: translateX(-1rem) scale(1.08);
}

.product-image-control-next:hover,
.product-image-control-next:focus {
  transform: translateX(1rem) scale(1.08);
}

.product-image-control:focus-visible {
  outline: 2px solid rgba(138, 143, 152, 0.42);
  outline-offset: 3px;
}

.toys-heading-logo {
  width: 80px;
  height: auto;
}

.toys-world-intro {
  max-width: 920px;
  margin-bottom: 2.5rem;
}

.toys-world-heading {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.toys-world-heading .toys-heading-logo {
  flex: 0 0 auto;
  width: clamp(68px, 8vw, 108px);
}

.toys-world-heading .section-title {
  margin: 0;
  font-size: clamp(1.85rem, 3.2vw, 3.2rem);
  white-space: nowrap;
}

.toys-world-intro .section-text {
  max-width: 760px;
}

.motors-world-heading .motors-heading-logo {
  width: clamp(150px, 20vw, 260px);
  max-width: none;
}

.toys-world-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -45px;
  left: 0;
  height: 46px;
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='90' viewBox='0 0 1440 90' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0 0H1440V42C1320 84 1200 84 1080 42S840 0 720 42 480 84 360 42 120 0 0 42Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 4;
}

.toys-world-section .container {
  position: relative;
  z-index: 2;
}

.toys-world-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.toys-world-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border-radius: 8px;
  padding: 2rem;
  color: var(--color-white);
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(17, 17, 17, 0.2);
  transition:
    transform 0.14s ease-out,
    box-shadow 0.14s ease-out,
    filter 0.14s ease-out;
}

.toys-world-card:not(.toys-world-card-intro) {
  display: flex;
  padding: 1.5rem;
  flex-direction: column;
  justify-content: flex-end;
  transition-delay: 0ms;
}

.toys-world-card:not(.toys-world-card-intro):hover,
.toys-world-card:not(.toys-world-card-intro):focus-visible {
  color: var(--color-white);
  transform: translateY(-12px) scale(1.004);
  box-shadow: 0 18px 32px rgba(17, 17, 17, 0.24);
  filter: saturate(1.04);
}

.toys-world-card:not(.toys-world-card-intro):focus-visible {
  outline: 3px solid rgba(234, 91, 12, 0.35);
  outline-offset: 4px;
}

.toys-world-card .section-title {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3vw, 3rem);
}

.toys-card-title {
  position: relative;
  z-index: 1;
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
}

.toys-world-card-intro {
  background: #eeeeee;
}

.toys-world-card-orange {
  background: url("../images/tasselli-home/palloni.jpg") center / cover
    no-repeat;
}

.toys-world-card-blue {
  background: url("../images/tasselli-home/giochi-spiaggia-e-outdoor.jpg") center /
    cover no-repeat;
}

.toys-world-card-cyan {
  background: url("../images/tasselli-home/giochi-d-acqua.jpg") center / cover
    no-repeat;
}

.toys-world-card-yellow {
  background: url("../images/tasselli-home/giochi-su-ruote-e-accessori.jpg")
    center / cover no-repeat;
}

.toys-world-card-green {
  background: url("../images/tasselli-home/sport.jpg") center / cover no-repeat;
}

.toys-world-card-distribution {
  background: url("../images/tasselli-home/altri-giochi.jpg") center / cover
    no-repeat;
}

.motors-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ececec 0%, #ffffff 100%);
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (min-width: 992px) {
  .motors-section.toys-world-section.py-lg-5 {
    padding-top: 6rem !important;
  }
}

.motors-section .toys-world-card-intro,
#homeContent .toys-world-card-intro {
  background: var(--color-white);
}

.motors-section .motors-card-license {
  background: url("../images/tasselli-home/auto-su-licenza.jpg") center / cover
    no-repeat;
}

.motors-section .motors-card-radiocomandi {
  background: url("../images/tasselli-home/radiocomandi.jpg") center / cover
    no-repeat;
}

.motors-section .motors-card-ultradrone {
  background: url("../images/tasselli-home/ultradrone.jpg") center / cover
    no-repeat;
}

.motors-section .motors-card-die-cast {
  background: url("../images/tasselli-home/die-cast.jpg") center / cover no-repeat;
}

.motors-section .motors-card-veicoli-racing {
  background: url("../images/tasselli-home/veicoli-racing.jpg") center / cover
    no-repeat;
}

.motors-section .motors-card-high-performance {
  background: url("../images/tasselli-home/high-performance.jpg") center / cover
    no-repeat;
}

.motors-mini-menu-section {
  position: relative;
  z-index: 4;
  overflow: hidden;
  background: linear-gradient(180deg, #ececec 0%, #ffffff 100%);
  padding: 5rem 0 2.5rem;
}

.motors-mini-menu-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 46px;
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='90' viewBox='0 0 1440 90' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0 0H1440V42C1320 84 1200 84 1080 42S840 0 720 42 480 84 360 42 120 0 0 42Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

.motors-mini-menu-section .container {
  position: relative;
  z-index: 2;
}

.motors-mini-menu-logo {
  display: block;
  width: min(260px, 70vw);
  height: auto;
  margin: 0 0 1.6rem;
}

.motors-mini-menu {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
}

.motors-mini-menu-item {
  --mini-menu-readable-overlay: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.36) 0%,
    rgba(0, 0, 0, 0.18) 24%,
    rgba(0, 0, 0, 0) 50%
  );
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 150px;
  border-radius: 8px;
  background: #d9d9d9;
  color: var(--color-white);
  padding: 1rem;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(17, 17, 17, 0.12);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    filter 0.16s ease;
}

.motors-mini-menu-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    var(--mini-menu-readable-overlay),
    linear-gradient(
      180deg,
      rgba(17, 17, 17, 0.05) 0%,
      rgba(17, 17, 17, 0.72) 100%
    ),
    url("../images/tasselli-home/auto-su-licenza.jpg") center / cover no-repeat;
  opacity: 0.86;
  transition: opacity 0.16s ease;
}

.motors-mini-menu-item:nth-child(2)::before {
  background:
    var(--mini-menu-readable-overlay),
    linear-gradient(
      180deg,
      rgba(17, 17, 17, 0.05) 0%,
      rgba(17, 17, 17, 0.72) 100%
    ),
    url("../images/tasselli-home/veicoli-racing.jpg") center / cover no-repeat;
}

.motors-mini-menu-item:nth-child(3)::before {
  background:
    var(--mini-menu-readable-overlay),
    linear-gradient(
      180deg,
      rgba(17, 17, 17, 0.05) 0%,
      rgba(17, 17, 17, 0.72) 100%
    ),
    url("../images/tasselli-home/radiocomandi.jpg") center / cover no-repeat;
}

.motors-mini-menu-item:nth-child(4)::before {
  background:
    var(--mini-menu-readable-overlay),
    linear-gradient(
      180deg,
      rgba(17, 17, 17, 0.05) 0%,
      rgba(17, 17, 17, 0.72) 100%
    ),
    url("../images/tasselli-home/ultradrone.jpg") center / cover no-repeat;
}

.motors-mini-menu-item:nth-child(5)::before {
  --mini-menu-readable-overlay: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.52) 0%,
    rgba(0, 0, 0, 0.28) 24%,
    rgba(0, 0, 0, 0) 50%
  );
  background:
    var(--mini-menu-readable-overlay),
    linear-gradient(
      180deg,
      rgba(17, 17, 17, 0.05) 0%,
      rgba(17, 17, 17, 0.72) 100%
    ),
    url("../images/tasselli-home/die-cast.jpg") center / cover no-repeat;
}

.motors-mini-menu-item:nth-child(6)::before {
  --mini-menu-readable-overlay: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.52) 0%,
    rgba(0, 0, 0, 0.28) 24%,
    rgba(0, 0, 0, 0) 50%
  );
  background:
    var(--mini-menu-readable-overlay),
    url("../images/tasselli-home/high-performance.jpg") center / cover no-repeat;
}

.motors-mini-menu-item span {
  position: relative;
  z-index: 1;
  display: block;
  font-size: clamp(0.86rem, 1.1vw, 1rem);
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}

.motors-mini-menu-item:hover,
.motors-mini-menu-item:focus-visible {
  z-index: 2;
  color: var(--color-white);
  transform: translateY(-3px) scale(1);
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.18);
}

.motors-mini-menu-item:hover::before,
.motors-mini-menu-item:focus-visible::before {
  opacity: 0.86;
}

.motors-mini-menu-item.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 4px;
  background: var(--color-primary);
}

.motors-mini-menu-item.is-disabled {
  color: rgba(255, 255, 255, 0.88);
}

.toys-mini-menu-section {
  overflow: hidden;
  background: linear-gradient(180deg, #ececec 0%, #ffffff 100%);
  padding-top: 5rem;
}

.toys-mini-menu-heading {
  margin: 0 0 1.4rem;
}

.toys-mini-menu-title {
  margin: 0;
}

.toys-mini-menu-item:nth-child(1)::before {
  background:
    var(--mini-menu-readable-overlay),
    linear-gradient(
      360deg,
      rgba(67, 160, 71, 0.96) 0%,
      rgba(67, 160, 71, 0.72) 15%,
      rgba(67, 160, 71, 0.12) 60%
    ),
    url("../images/tasselli-home/sport.jpg") center / cover no-repeat;
}

.toys-mini-menu-item:nth-child(2)::before {
  background:
    var(--mini-menu-readable-overlay),
    linear-gradient(
      360deg,
      rgba(234, 91, 12, 0.96) 0%,
      rgba(234, 91, 12, 0.72) 15%,
      rgba(234, 91, 12, 0.12) 60%
    ),
    url("../images/tasselli-home/palloni.jpg") center / cover no-repeat;
}

.toys-mini-menu-item:nth-child(3)::before {
  background:
    var(--mini-menu-readable-overlay),
    linear-gradient(
      360deg,
      rgba(39, 118, 200, 0.96) 0%,
      rgba(39, 118, 200, 0.72) 15%,
      rgba(39, 118, 200, 0.12) 60%
    ),
    url("../images/tasselli-home/giochi-spiaggia-e-outdoor.jpg") center / cover
      no-repeat;
}

.toys-mini-menu-item:nth-child(4)::before {
  background:
    var(--mini-menu-readable-overlay),
    linear-gradient(
      360deg,
      rgba(22, 166, 201, 0.96) 0%,
      rgba(22, 166, 201, 0.72) 15%,
      rgba(22, 166, 201, 0.12) 60%
    ),
    url("../images/tasselli-home/giochi-d-acqua.jpg") center / cover no-repeat;
}

.toys-mini-menu-item:nth-child(5)::before {
  background:
    var(--mini-menu-readable-overlay),
    linear-gradient(
      360deg,
      rgba(246, 181, 27, 0.96) 0%,
      rgba(246, 181, 27, 0.72) 15%,
      rgba(246, 181, 27, 0.12) 60%
    ),
    url("../images/tasselli-home/giochi-su-ruote-e-accessori.jpg") center / cover
      no-repeat;
}

.toys-mini-menu-item:nth-child(6)::before {
  background:
    var(--mini-menu-readable-overlay),
    linear-gradient(
      360deg,
      rgba(234, 91, 12, 0.96) 0%,
      rgba(234, 91, 12, 0.72) 15%,
      rgba(234, 91, 12, 0.12) 60%
    ),
    url("../images/tasselli-home/altri-giochi.jpg") center / cover no-repeat;
}

.motors-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 46px;
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='90' viewBox='0 0 1440 90' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0 0H1440V42C1320 84 1200 84 1080 42S840 0 720 42 480 84 360 42 120 0 0 42Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

.motors-heading-logo {
  flex: 0 0 auto;
  width: 100%;
  max-width: 450px;
  height: auto;
}

.ultradrone-heading-logo {
  display: block;
  width: clamp(110px, 14vw, 180px);
  height: auto;
}

.licenses-section {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  padding: 2rem 0;
}

.licenses-section[hidden] {
  display: none;
}

.licenses-section-inner {
  width: 100%;
  margin: 0 auto;
}

.licenses-section-title {
  margin-bottom: 1rem;
  text-align: center;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  letter-spacing: 5px;
  color: #54565b;
}

.licenses-section-title span {
  color: var(--color-primary);
}

.licenses-slider-wrap {
  position: relative;
  padding: 0;
}

.licenses-slider {
  overflow: hidden;
}

.licenses-slider .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear !important;
}

.licenses-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}

.licenses-slider.is-static .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  transform: none !important;
  transition-duration: 0ms !important;
  transition-delay: 0ms !important;
}

.licenses-slider.is-static .swiper-slide {
  flex: 0 1 clamp(120px, 12.5vw, 200px);
  width: clamp(120px, 12.5vw, 200px) !important;
  margin-right: 0 !important;
}

.licenses-slider.is-slider .swiper-wrapper {
  justify-content: flex-start;
}

.licenses-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: 180px;
  object-fit: contain;
  opacity: 0.9;
}

.all-licenses-section {
  padding: 6rem 0;
}

.all-licenses-toys-section {
  background: #ececec;
}

.all-licenses-motors-section {
  background: linear-gradient(180deg, #ececec 0%, #ffffff 100%);
}

.all-licenses-brand-heading {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

.all-licenses-brand-heading .section-title {
  margin: 0;
  font-size: clamp(1.85rem, 3.2vw, 3.2rem);
}

.all-licenses-brand-logo {
  display: block;
  height: auto;
}

.all-licenses-brand-logo-toys {
  width: clamp(68px, 8vw, 108px);
}

.all-licenses-brand-logo-motors {
  width: clamp(150px, 20vw, 260px);
}

.all-licenses-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 1.5rem;
}

.all-license-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  margin: 0;
  border-radius: 8px;
  background: var(--color-white);
  padding: 1rem;
}

.all-license-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: 128px;
  object-fit: contain;
}

.locations-section {
  background: linear-gradient(180deg, #ececec 0%, #ffffff 100%);
  padding: 6rem 0;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.location-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  border-radius: 8px;
  background: var(--color-white);
  overflow: hidden;
  padding: clamp(1.5rem, 2.4vw, 2.4rem);
  padding-bottom: 0;
}

.location-card h3 {
  margin: 0 0 1.6rem;
  color: var(--color-black);
  font-size: clamp(1.1rem, 1.35vw, 1.35rem);
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.location-card address {
  display: grid;
  gap: 1rem;
  margin: 0;
  color: rgba(17, 17, 17, 0.78);
  font-size: clamp(0.98rem, 1.12vw, 1.08rem);
  font-style: normal;
  line-height: 1.7;
}

.location-card strong {
  color: var(--color-black);
  font-weight: 800;
  text-transform: uppercase;
}

.location-map {
  position: relative;
  overflow: hidden;
  width: calc(100% + (clamp(1.5rem, 2.4vw, 2.4rem) * 2));
  aspect-ratio: 4 / 3;
  margin: 1.5rem calc(clamp(1.5rem, 2.4vw, 2.4rem) * -1) 0;
  border-radius: 0;
  background: #ececec;
}

.location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.aboutus {
  position: relative;
  overflow: hidden;
  background-color: var(--color-primary);
  height: 500px;
}

.aboutus .icon {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.aboutus .icon img {
  height: 164%;
  aspect-ratio: 1 / 1;
  position: absolute;
  top: -10%;
  transform: translateY(10%);
}

.aboutus .section-text {
  margin-bottom: 1.5rem;
}

.aboutus-btn {
  background-color: var(--color-white);
  color: var(--color-primary);
  border: solid 1px var(--color-primary);
}

.aboutus-btn:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
  border: solid 1px var(--color-white);
}

.contact-section {
  background: var(--color-grey);
  padding: 6rem 0;
}

.contact-section-orange {
  background: var(--color-primary);
}

.contact-section-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.contact-section-title {
  margin-bottom: 2.5rem;
  text-align: center;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.contact-form {
  display: grid;
  gap: 1.4rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.contact-form-field-full {
  grid-column: 1 / -1;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 8px;
  background: var(--color-white);
  color: var(--color-black);
  padding: 1rem 1.1rem;
  font: inherit;
  line-height: 1.4;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(17, 17, 17, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(234, 91, 12, 0.14);
}

.contact-section-orange .contact-form input:focus,
.contact-section-orange .contact-form textarea:focus {
  border-color: var(--color-white);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.28);
}

.contact-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.contact-form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: rgba(17, 17, 17, 0.74);
  font-size: 0.92rem;
  line-height: 1.45;
}

.contact-section-orange .contact-form-privacy {
  color: rgba(255, 255, 255, 0.86);
}

.contact-form-privacy input {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  margin-top: 0.18rem;
  accent-color: var(--color-primary);
}

.contact-form-privacy a {
  color: var(--color-black);
  font-weight: 700;
  text-decoration-color: rgba(234, 91, 12, 0.5);
  text-underline-offset: 0.18em;
}

.contact-section-orange .contact-form-privacy a {
  color: var(--color-white);
  text-decoration-color: rgba(255, 255, 255, 0.7);
}

.contact-form-privacy a:hover,
.contact-form-privacy a:focus {
  color: var(--color-primary);
}

.contact-section-orange .contact-form-privacy a:hover,
.contact-section-orange .contact-form-privacy a:focus {
  color: var(--color-white);
  text-decoration-color: var(--color-white);
}

.contact-submit-btn {
  min-width: 128px;
}

.contact-section-orange .contact-submit-btn {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.contact-section-orange .contact-submit-btn:hover,
.contact-section-orange .contact-submit-btn:focus {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-white);
}

.scroll-reveal-ready [data-scroll] {
  --scroll-x: 0;
  --scroll-y: 28px;
  --scroll-delay: 0ms;
  opacity: 0;
  transform: translate3d(var(--scroll-x), var(--scroll-y), 0);
  transition:
    opacity 0.68s ease,
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.2s ease,
    filter 0.2s ease;
  transition-delay: var(--scroll-delay);
  will-change: opacity, transform;
}

.scroll-reveal-ready [data-scroll].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.scroll-reveal-ready
  .toys-world-card:not(.toys-world-card-intro).is-visible:hover,
.scroll-reveal-ready
  .toys-world-card:not(.toys-world-card-intro).is-visible:focus-visible {
  transform: translate3d(0, -14px, 0) scale(1.004);
  box-shadow: 0 20px 36px rgba(17, 17, 17, 0.26);
  filter: saturate(1.06);
  transition:
    transform 0.14s ease-out,
    box-shadow 0.14s ease-out,
    filter 0.14s ease-out;
  transition-delay: 0ms;
}

@media (max-width: 767.98px) {
  .scroll-reveal-ready [data-scroll] {
    --scroll-x: 0;
    --scroll-y: 20px;
    transition-duration: 0.54s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal-ready [data-scroll] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1199.98px) {
  .motors-section {
    padding-bottom: 2rem;
  }

  .aboutus .icon img {
    height: 140%;
  }
}

@media (max-width: 991.98px) {
  .navbar-brand {
    top: auto;
    position: static;
    transform: none !important;
  }

  .brand-logo {
    width: 68px;
    height: auto;
  }

  .toys-world-section {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }

  .motors-mini-menu-section {
    padding: 4rem 0 2rem;
  }

  .motors-mini-menu {
    display: flex;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scroll-snap-type: x proximity;
  }

  .toys-grid-mini-menu,
  .motors-grid-mini-menu {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 1.5rem;
    overflow-x: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .motors-mini-menu-item {
    flex: 0 0 168px;
    min-height: 150px;
    scroll-snap-align: start;
  }

  .toys-grid-mini-menu .motors-mini-menu-item,
  .motors-grid-mini-menu .motors-mini-menu-item {
    flex: initial;
    scroll-snap-align: none;
  }

  .license-intro-layout {
    grid-template-columns: 1fr;
  }

  .license-intro-figure {
    max-width: 560px;
  }

  .license-intro-slider {
    --product-slider-height: 360px;
  }

  .license-intro-slider .motors-visual-slider,
  .license-intro-slider .motors-race-stage {
    min-height: var(--product-slider-height);
  }

  .all-licenses-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .toys-world-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .toys-world-card-intro {
    grid-column: 1 / -1;
  }

  .toys-world-card-orange {
    grid-column: 1 / 2;
  }

  .toys-world-card-blue {
    grid-column: 2 / 4;
  }

  #homeContent .toys-world-card-orange,
  #homeContent .toys-world-card-blue,
  .motors-section .toys-world-card-orange,
  .motors-section .toys-world-card-blue {
    grid-column: auto;
  }

  .motors-section {
    padding-bottom: 2rem;
  }

  .aboutus {
    height: 380px;
  }

  .aboutus .icon img {
    right: 0;
    height: 135%;
    top: -10%;
    transform: translateY(10%);
  }

  .main-navbar .nav-link {
    border: none;
  }
}

@media (max-width: 767.98px) {
  body {
    padding-top: 60px;
  }

  .video-hero-section {
    height: calc(90vh - 60px);
    max-height: 500px;
  }

  .video-hero-section-compact {
    height: calc(50vh - 60px);
    max-height: calc(50vh - 60px);
  }

  .toys-full-mobile-hero,
  .product-full-mobile-hero {
    height: calc(90vh - 60px);
    max-height: 500px;
  }

  .video-hero-motors-logo-wrap {
    bottom: 2rem;
  }

  .video-hero-motors-logo {
    width: min(56vw, 220px);
  }

  .mobile-scroll-cue {
    position: absolute;
    right: 50%;
    bottom: 1.25rem;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.28);
    color: var(--color-white);
    text-decoration: none;
    transform: translateX(50%);
    animation: mobileScrollCuePulse 1.6s ease-in-out infinite;
    backdrop-filter: blur(8px);
  }

  .mobile-scroll-cue:hover,
  .mobile-scroll-cue:focus {
    color: var(--color-white);
  }

  #homeContent {
    scroll-margin-top: 60px;
  }

  .site-header::after {
    bottom: -18px;
    height: 20px;
  }

  .main-navbar .navbar-nav {
    align-items: stretch !important;
  }

  .product-kicker {
    font-size: 0.64rem;
  }

  .product-slide-btn {
    font-size: 0.82rem;
  }

  .toys-world-section {
    padding-top: 3rem;
  }

  #homeContent {
    padding-top: 6rem !important;
  }

  .toys-world-intro .section-text br {
    display: none;
  }

  .toys-world-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
  }

  .toys-world-card-intro,
  .toys-world-card-orange {
    grid-column: 1 / -1;
  }

  .toys-world-card-blue {
    grid-column: 1 / 2;
  }

  #homeContent .toys-world-card-orange,
  #homeContent .toys-world-card-blue,
  .motors-section .toys-world-card-orange,
  .motors-section .toys-world-card-blue {
    grid-column: auto;
  }

  .toys-grid-mini-menu,
  .motors-grid-mini-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .toys-world-card {
    min-height: 145px;
    padding: 1rem;
  }

  .toys-world-card-intro {
    min-height: auto;
  }

  .toys-world-card .section-title {
    margin-bottom: 0.7rem;
    font-size: 1.55rem;
  }

  .toys-card-title {
    font-size: 1rem;
    line-height: 1.2;
  }

  .toys-world-card .section-text {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .site-footer {
    padding: 3.5rem 0 3rem;
  }

  .footer-products-col {
    order: 1;
  }

  .footer-company-col {
    order: 2;
  }

  .footer-products-toys,
  .footer-products-motors {
    display: none;
  }

  .footer-support-col {
    margin-bottom: 2rem;
  }

  .motors-section {
    padding-bottom: 4rem;
  }

  .motors-heading-logo {
    width: 200px;
  }

  .license-intro-slider {
    --product-slider-height: 260px;
    width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .license-intro-layout,
  .license-intro-content,
  .license-intro-figure,
  .license-intro-slider .motors-visual-slider,
  .license-intro-slider .motors-race-stage {
    min-width: 0;
    max-width: 100%;
  }

  .license-intro-content {
    width: 100%;
  }

  .license-intro-content .section-text {
    overflow-wrap: break-word;
  }

  .license-intro-slider .motors-visual-slider,
  .license-intro-slider .motors-race-stage {
    min-height: var(--product-slider-height);
  }

  .license-intro-slider .motors-visual-slider .swiper-slide {
    width: 100%;
    max-width: 100%;
    padding: 1rem;
  }

  .license-intro-slider .motors-visual-image {
    max-width: 100%;
  }

  .licenses-section {
    padding: 2rem 0;
  }

  .licenses-section-title {
    margin-bottom: 1rem;
    font-size: 1.3rem;
  }

  .licenses-slider-wrap {
    padding: 0;
  }

  .licenses-slider .swiper-slide {
    height: 150px;
  }

  .licenses-logo {
    max-width: 100%;
    height: 122px;
  }

  .all-licenses-section {
    padding: 4rem 0;
  }

  .all-licenses-brand-heading {
    margin-bottom: 2rem;
  }

  .all-licenses-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .all-license-card {
    min-height: 124px;
    padding: 0.85rem;
  }

  .all-license-logo {
    height: 104px;
  }

  .locations-section {
    padding: 4rem 0;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .location-card {
    min-height: auto;
  }

  .aboutus {
    height: 500px;
  }

  .aboutus .icon img {
    height: 117%;
    left: 64%;
    transform: translate(-50%, -42%);
    top: 60%;
  }

  .history-hero-title {
    font-size: clamp(2.3rem, 14vw, 4.2rem);
  }

  .history-hero-text {
    max-width: 92%;
    font-size: 0.95rem;
  }

  .history-section {
    padding: 4rem 0;
  }

  .history-intro {
    margin-bottom: 3rem;
    text-align: left;
  }

  .contact-section {
    padding: 4rem 0;
  }

  .contact-section-title {
    margin-bottom: 1.8rem;
    font-size: 2rem;
  }

  .contact-form,
  .contact-form-grid {
    gap: 1rem;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"],
  .contact-form textarea {
    padding: 0.95rem 1rem;
  }

  .contact-form-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 1.25rem;
  }

  .contact-submit-btn {
    width: 100%;
  }

  .toys-world-card:not(.toys-world-card-intro) {
    padding: 1rem;
  }

  .footer-title {
    margin: 0 0 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-scroll-cue {
    animation: none;
  }
}

@keyframes mobileScrollCuePulse {
  0%,
  100% {
    opacity: 0.72;
    transform: translateX(50%) translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateX(50%) translateY(10px);
  }
}
