.store-displays-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.store-displays-header h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #323233;
}

.display-image {
  margin-bottom: 30px;
  text-align: center;
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}

.display-image img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.caption {
  font-size: 0.95rem;
  color: #333;
  margin-top: 10px;
  text-align: center;
}

.store-gallery-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.store-gallery-row img,
.store-gallery-row a img {
  height: auto;
  width: auto;
  max-height: 295px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.shelving-sizes {
  margin-top: 40px;
  background-color: #f5f5f5;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.shelving-sizes h2 {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 20px;
}

.shelving-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  font-size: 0.9rem;
  text-align: center;
}

.shelving-table .header {
  font-weight: bold;
  background-color: #c0c0c0;
  padding: 8px;
  border-radius: 6px;
}

.store-description {
  max-width: 1000px;
  margin: 40px auto 20px auto;
  font-size: 1rem;
  text-align: center;
  font-family: Arial, sans-serif;
}

.resource-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 40px 0 20px;
}

.resource-buttons a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  font-family: Verdana, sans-serif;
  color: #000;
  font-weight: bold;
  font-size: 0.9rem;
}

.resource-buttons img {
  height: auto;
  max-width: 90px;
  margin-bottom: 5px;
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
}

.store-help {
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  margin: 30px auto;
  max-width: 1000px;
}

.store-final-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.store-final-row img {
  max-height: 175px;
  height: auto;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.12);
}

.store-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Verdana, sans-serif;
  font-size: 0.75rem;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .store-footer {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto 20px;
  }
  .footer-left, .footer-right {
    width: 50%;
  }
}




.store-displays-button-nav {
  margin: 20px auto 40px;
  text-align: center;
  background-color: #FFFFFF;
}

.store-displays-button-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.store-displays-button-nav a {
  font-family: Verdana, sans-serif;
  font-size: 0.90rem;
  color: #fff;
  background-color: #333333;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(241, 241, 240, 0.938);
  transition: background-color 0.2s, transform 0.2s;
  display: inline-block;
}

.store-displays-button-nav a:hover {
  background-color: #a5a5a5;
  transform: translateY(-1px);
  
}