.store-photos {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.section-header img {
  width: auto;
  height: 50px;
  display: block;
  margin: 0 auto 20px;
}

.photo-block {
  text-align: center;
  margin: 40px 0;
}

.photo-block img {
  width: auto;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.photo-block p,
.caption-center {
  font-size: 1rem;
  color: #333;
  margin-top: 10px;
  text-align: center;
}

.photo-grid-two {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px 0 10px;
}

.photo-grid-two img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.store-thumbnails {
  margin-top: 60px;
  padding: 20px;
  text-align: center;
}

.thumb-section-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #000080;
  margin-bottom: 20px;
}

.thumb-section-title span {
  font-weight: normal;
  color: #333;
  font-size: 1rem;
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  justify-items: center;
}

.thumb-grid img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 200px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.thumb-grid img:hover {
  transform: scale(1.05);
}
