/* ===============================================
   STORE PAGE — Original Look w/ Controlled Size
=============================================== */

.store-section {
  text-align: center;
  margin-top: 50px;
}

/* Store title text */
.store-title {
  font-size: 2.2rem;
  color: #f4d074;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 35px;
  text-shadow:
    0 0 6px rgba(0, 0, 0, 0.8),
    0 0 12px rgba(139, 96, 28, 0.9),
    0 0 20px rgba(244, 208, 116, 0.9);
}

/* Center container */
.store-comingsoon-wrapper {
  width: 100%;
  max-width: 600px;   /* 👈 This matches your screenshot better */
  margin: 0 auto;
  display: block;
}

/* Scroll image — natural size, no frame */
.store-comingsoon-image {
  width: 100%;
  max-width: 600px;   /* 👈 Control maximum but keep original style */
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Gold note text */
.store-note {
  margin-top: 20px;
  font-size: 1rem;
  color: #f4d074;
  font-weight: 500;
  text-shadow:
    0 0 4px rgba(0, 0, 0, 0.9),
    0 0 10px rgba(139, 96, 28, 0.9);
}

/* Mobile scale */
@media (max-width: 600px) {
  .store-comingsoon-image {
    max-width: 400px;
  }
}
/* Hover Glow Effect */
.store-comingsoon-image:hover {
  filter: drop-shadow(0 0 18px rgba(244, 208, 116, 0.9));
  transform: scale(1.02);
  transition: all 0.25s ease;
}
