.tyshara-shop-hero {
    max-width: 1200px;
  text-align: center;
  padding: 1rem 1rem 1rem;
  background: #fdf8f4;
}
.tyshara-shop-title {
  font-family: 'Satisfy', cursive;
  font-size: 2.8rem;
  color: #73504f;
  margin-bottom: 0.6rem;
  animation: fadeInDown 1.2s ease-out;
}
.tyshara-shop-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #7e9f96;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

