/* ========== FEATURED MERCH SECTION ========== */
.featured-merch {
  background: url('Images/featured-merch-background.jpg') center/cover no-repeat;
  padding: 60px 20px;
  color: #e61313;
  border-radius: 10px;
}

/* ========== SHOP SECTION ========== */
.shop-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
              url('images/shop-background.png') center/cover no-repeat;
  padding: 60px 20px;
  color: white;
  border-radius: 10px;
}

/* ========== PRODUCT GRID ========== */
.products-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.product {
  background: #f9f9f9;
  color: #333;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 250px;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.product img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.product img:hover {
  transform: scale(1.05);
}

.product h3 {
  font-size: 1.2rem;
  margin-top: 15px;
}

.product p {
  font-weight: 600;
  margin: 10px 0;
}

.product button {
  margin-top: auto;
  padding: 10px 20px;
  background: #e61313;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.product button:hover,
.product button:focus {
  background: #c30000;
  outline: none;
}

/* ========== FOLLOW US SECTION ========== */
.follow-us {
  background: #f9f9f9;
  padding: 60px 0;
  text-align: center;
}

.follow-us h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  font-size: 2rem;
}

.social-icons a {
  color: #e61313;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #c30000;
  transform: scale(1.2);
}
/* ========== MEDIA QUERIES ========== */

.follow-us h2 {
  text-align: center;
}
/* existing styles... */

/* Disabled button styling */
button.disabled-out-of-stock,
input[type="image"].disabled-out-of-stock {
  background-color: grey !important;
  filter: grayscale(100%);
  cursor: not-allowed !important;
  opacity: 0.6;
  pointer-events: none;
}

/* Override hover effects on disabled */
button.disabled-out-of-stock:hover,
input[type="image"].disabled-out-of-stock:hover {
  background-color: grey !important;
  box-shadow: none !important;
  transform: none !important;
}


