/* File: online_store.css
 * Version: 1.0
 * Created: 2025-06-27
 * Description: Styles for online_store.php landing page.
 */

.store-container {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 15px;
  padding: 40px 20px;
  max-width: 640px;
  margin: 40px auto;
  text-align: center;
}

.store-title {
  font-size: 2em;
  color: #d2691e; /* orange-brown */
  margin-bottom: 20px;
  font-weight: bold;
}

.store-main-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.store-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.store-button {
  display: inline-block;
  background-color: #f28b82; /* light red */
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
  max-width: 300px;
  width: 90%;
  text-align: center;
}

.store-button:hover {
  background-color: #e57373;
  transform: translateY(-2px);
}