@charset "UTF-8";


/* ========== SHOP CATEGORIES SECTION ========== */

.shop-categories {
  padding: 60px 20px;
  background: linear-gradient(to left, #dff0d8, #fdf6e3, #fff0f5);
  text-align: center;
}

.shop-categories h2 {
  font-size: 36px;
  font-family: 'Sandana', serif;
  margin-bottom: 10px;
  background: linear-gradient(to right, #a2c867, #f7d560, #93d8ec);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.category-intro {
  font-size: 18px;
  color: #4b4b4b;
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-family: 'Georgia', serif;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* ========== CATEGORY CARD ========== */
.category-card {
  position: relative;
  display: block;
  width: 280px;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  background: #ffffff;
}

.category-card:hover {
  transform: scale(1.04);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.3s ease;
}

/* ========== OVERLAY ========== */
.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.1));
  color: #2d3a1e;
}

.card-overlay h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
  background: linear-gradient(to right, #a2c867, #f7d560, #93d8ec);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-overlay p {
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
}

.card-overlay .cta {
  font-size: 15px;
  font-weight: bold;
  color: #5c7a29;
}

/* ========== MEDIA QUERIES ========== */

/* Max Width: 1920px */
@media (max-width: 1920px) {
  .category-card {
    width: 280px;
    height: 380px;
  }
}

/* Max Width: 1200px */
@media (max-width: 1200px) {
  .category-card {
    width: 240px;
    height: 340px;
  }
}

/* Max Width: 768px */
@media (max-width: 768px) {
  .category-grid {
    flex-direction: column;
    align-items: center;
  }

  .category-card {
    width: 90%;
    max-width: 400px;
    height: auto;
  }

  .category-card img {
    height: auto;
  }

  .card-overlay {
    position: relative;
    background: #ffffffee;
  }
}

/* Max Width: 480px */
@media (max-width: 480px) {
  .shop-categories {
    padding: 40px 10px;
  }

  .shop-categories h2 {
    font-size: 28px;
  }

  .category-intro {
    font-size: 16px;
  }

  .card-overlay h3 {
    font-size: 18px;
  }

  .card-overlay p,
  .card-overlay .cta {
    font-size: 14px;
  }
}

/* Max Width: 300px */
@media (max-width: 300px) {
  .shop-categories {
    padding: 30px 8px;
  }

  .shop-categories h2 {
    font-size: 24px;
  }

  .category-intro {
    font-size: 14px;
  }

  .category-card {
    width: 80%;
    height: auto;
  }

  .card-overlay {
    padding: 16px;
  }

  .card-overlay h3 {
    font-size: 16px;
  }

  .card-overlay p,
  .card-overlay .cta {
    font-size: 13px;
  }
}
