/* 🌍 Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* 🔹 Hero Section */
.shop-hero {
  position: relative;
  background-image: url('../assets/images/shop1.jpg');
  background-size: cover;
  background-position: center;
  height: 500px;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-overlay h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-overlay p {
  font-size: 18px;
  font-weight: 400;
}

/* 🛍️ Category Card Grid */
.category-row {
  margin-top: 20px;
}

/* 🔸 Category Card */
.card.hover-card {
  border: 1px solid #eee;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  padding: 10px;
}

.card.hover-card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.category-img {
  height: 160px;
  object-fit: contain;
  margin-bottom: 10px;
  padding: 10px;
}

/* 🏷️ Badge Styling */
.badge {
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 20px;
  font-weight: 500;
}

/* 🔸 Card Text */
.card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

/* 📰 Marquee */
marquee {
  font-size: 15px;
  font-weight: 500;
  color: #444;
  background-color: #f8f9fa;
  padding: 8px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-top: 5px;
  width: 100%;
}

/* 📱 Medium Devices (Tablets) */
@media (max-width: 768px) {
  .shop-hero {
    height: 400px;
  }

  .hero-overlay h1 {
    font-size: 26px;
  }

  .hero-overlay p {
    font-size: 14px;
  }

  .category-img {
    height: 110px;
    padding: 6px;
  }

  .card.hover-card {
    padding: 8px 10px;
    min-height: 240px;
  }

  .card-title {
    font-size: 14.5px;
    margin-bottom: 6px;
  }

  .badge {
    font-size: 11px;
    padding: 5px 10px;
  }
}

/* 📱 Small Devices (Phones) */
@media (max-width: 576px) {
  .shop-hero {
    height: 360px;
  }

  .hero-overlay h1 {
    font-size: 20px;
  }

  .hero-overlay p {
    font-size: 13px;
  }

  .category-img {
    height: 100px;
    padding: 4px;
  }

  .card.hover-card {
    padding: 6px 8px;
    min-height: 220px;
  }

  .card-title {
    font-size: 13.5px;
  }

  .badge {
    font-size: 10.5px;
    padding: 4px 8px;
  }

  marquee {
    font-size: 13px;
    padding: 6px 12px;
  }
}
/* 🛑 Disabled card (out of stock) */
.disabled-card {
  position: relative;
  pointer-events: none;
  opacity: 0.65;
  filter: grayscale(100%);
}

/* 🔴 Overlay label for "Unavailable" */
.disabled-card::before {
  content: "Unavailable";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  font-size: 1.1rem;
  font-weight: 700;
  color: #dc3545;
  z-index: 10;
}
