body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #3b0d00, #7a3e1c);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  margin: 0;
  padding: 0;
  text-align: center;
}

header {
  padding: 40px 20px 20px;
}

h1 {
  margin-bottom: 10px;
  font-size: 36px;
}

.store-description {
  font-size: 18px;
  margin: 0 auto 30px;
  max-width: 700px;
  color: #e0e0e0;
}

.discord-button {
  background-color: #6c5e3a;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  font-family: sans-serif;
  transition: background-color 0.3s ease;
}
.discord-button:hover {
  background-color: #5a4f30;
}

.redeem-section form {
  margin: 20px auto 40px;
}

.redeem-section input[type="text"] {
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  border: none;
  width: 250px;
}

.redeem-section button {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  background-color: #6c5e3a;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 10px;
  transition: background-color 0.3s ease;
}
.redeem-section button:hover {
  background-color: #5a4f30;
}

.product-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.product-card {
  text-decoration: none;
  color: #000;
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
  width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card:hover {
  transform: scale(1.05);
}

.product-card img {
  width: 100%;
  border-radius: 10px;
}

/* Share Button */
#share-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #8B4513; /* brown */
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  font-size: 16px;
  box-shadow: -2px 2px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
  z-index: 1000;
}

#share-btn:hover {
  background-color: #A0522D;
}

#copy-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #333;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1000;
  font-family: sans-serif;
}

#copy-notification.show {
  opacity: 1;
}


.product-info h2 {
  font-size: 18px;
  margin: 10px 0 5px;
  color: #333;
}

.product-info p {
  font-size: 14px;
  color: #444;
}

footer {
  margin-top: 40px;
  padding: 20px;
  font-size: 14px;
  color: #bbb;
  background-color: rgba(0, 0, 0, 0.3);
}