/* --------------------------------------------------
   GENERAL
-------------------------------------------------- */

* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

/* 🔴 IMPORTANT: don't style body here, let your global CSS handle it */

/* --------------------------------------------------
   HERO SECTION
-------------------------------------------------- */

.store-hero {
  width: 100%;
  margin-top: 80px;
  padding: 40px 5vw;
}

.store-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.store-hero-text {
  width: 50%;
}

.store-tagline {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.store-hero-text h1 {
  font-size: 54px;
  margin: 20px 0;
  font-weight: 700;
}

.store-subtitle {
  font-size: 18px;
  line-height: 1.6;
  max-width: 90%;
  margin-bottom: 30px;
}

/* SEARCH BAR */
.store-search {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 500px;
}

.store-search input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid #ccc;
  font-size: 16px;
  border-radius: 4px;
}

.store-search button {
  padding: 14px 22px;
  background: black;
  color: white;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.store-search button:hover {
  background: #333;
}

/* HERO IMAGE */
.store-hero-image {
  width: 50%;
}

.store-hero-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* --------------------------------------------------
   STORES LIST
-------------------------------------------------- */

.store-layout {
  width: 100%;
  padding: 30px 5vw 60px;
  display: flex;
  justify-content: flex-start; /* align left */
}

.store-results {
  width: 100%;
  max-width: 900px;
}

.store-results h2 {
  font-size: 32px;
  font-weight: 700;
}

.store-results-note {
  margin-bottom: 25px;
  font-size: 15px;
  color: #555;
}

/* STORE CARDS */
.store-card {
  border-bottom: 1px solid #ddd;
  padding: 25px 0;
}

.store-card h3 {
  font-size: 22px;
  margin-bottom: 5px;
  font-weight: 700;
}

.store-address {
  font-size: 16px;
  margin-bottom: 8px;
}

.store-hours {
  font-size: 14px;
  color: #444;
  margin-bottom: 6px;
}

.store-services {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.store-link {
  font-size: 15px;
  font-weight: 700;
  color: black;
  text-decoration: underline;
}

/* --------------------------------------------------
   RESPONSIVE (TABLET)
-------------------------------------------------- */

@media (max-width: 1024px) {
  .store-hero-inner {
    flex-direction: column;
  }

  .store-hero-text,
  .store-hero-image {
    width: 100%;
  }

  .store-hero {
    padding: 30px 5vw;
  }

  .store-results {
    max-width: 100%;
  }
}

/* --------------------------------------------------
   RESPONSIVE (MOBILE)
-------------------------------------------------- */

@media (max-width: 600px) {
  .store-hero {
    margin-top: 70px;
    padding: 24px 4vw 32px;
  }

  .store-hero-text h1 {
    font-size: 32px;
  }

  .store-subtitle {
    font-size: 15px;
    max-width: 100%;
  }

  .store-search {
    flex-direction: column;
    max-width: 100%;
  }

  .store-search button {
    width: 100%;
  }

  .store-hero-image {
    margin-top: 16px;
  }

  .store-layout {
    padding: 16px 4vw 40px;
  }

  .store-card h3 {
    font-size: 19px;
  }
}

.toggle-stores-btn {
  margin: 20px 10px;
  display: block;
  padding: 12px 24px;
  background: black;
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
}
