/* store.css - EmTech Media Store Styling */

.store-header {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #FF6E00;
  text-align: center;
  border-bottom: 2px solid #FF6E00;
  padding-bottom: 0.5rem;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem auto;
  max-width: 1000px;
  padding: 0 1rem;
}

.store-item {
  background-color: #111;
  border: 1px solid #333;
  border-radius: 8px;
  text-align: center;
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 110, 0, 0.3);
}

.store-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 6px;
}

.store-item h3 {
  font-size: 1.2rem;
  color: #fff;
  margin: 0.5rem 0;
}

.store-item p {
  color: #FF6E00;
  font-size: 1.1rem;
  margin: 0.25rem 0 1rem;
}

.store-item button {
  background-color: #FF6E00;
  color: #000;
  font-weight: bold;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.store-item button:hover {
  background-color: #e66000;
}

@media (max-width: 500px) {
  .store-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 0.5rem;
  }

  .store-header {
    font-size: 1.4rem;
  }

  .store-item h3 {
    font-size: 1rem;
  }

  .store-item p {
    font-size: 1rem;
  }

  .store-item button {
    width: 100%;
    padding: 0.75rem;
  }
}
