@charset "UTF-8";
/* CSS Document */

.shop-section {
 background: linear-gradient(to right, #f3e3b5, #d3e9d3, #d6e4f2);
  color: #000000;
  text-align: center;
  font-family: 'Cabin', sans-serif;
  padding: 60px 10px;
}

.shop-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	max-height: 500px;
}

.shop-intro {
  margin: 20px 15px 30px 15px;
  padding: 5px 10px;
  background: white;
	border-radius: 15px;
	
}

.shop-intro h2 {
  font-size: 50px;
  font-weight: bold;
  background: linear-gradient(to right, #e6c26a, #5d9b6a, #6d9dc5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
	font-family: 'Milk Drink';
	 margin: 0 auto;
	padding: 10px 0px 0px 0px;
	
}

.shop-intro p {
  font-size: 18px;
	line-height: 20px;
  color: #000000;
  max-width: 700px;
  margin: 0 auto;
	padding: 10px 5px;
	font-family: 'Nunito';
}

.shop-category {
  margin: 20px 0px 10px 0px;
	background: white;
	border-radius: 15px;
}

.shop-category h3 {
  font-size: 36px;
	line-height: 40px;
  font-weight: bold;
  background: linear-gradient(to right, #e6c26a, #5d9b6a, #6d9dc5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
	font-family: 'Moonbright Demo';
	 margin: 0 auto;
	padding: 20px 0px 20px 0px;
	
	
}

.shop-category .shop-grid {
  display: grid;
  gap: 20px;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: white;
  padding: 5px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-size: 18px;
  font-weight: bold;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
	font-family: 'Nunito';
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.shop-cta {
  margin-top: 40px;
}

.shop-cta .btn {
    padding: 12px 28px;
    font-size: 20px;
    background: linear-gradient(to left, #b0d9a4, #f2e4b3, #eac4d1);
    color: black;
    border: thin solid #5D8A92;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
    width: 75%;
    max-width: 450px;
}

.shop-cta .btn:hover {
   background: linear-gradient(to right, #b0d9a4, #f2e4b3, #eac4d1);
	 font-size: 22px;
}

/* ==================== Media Queries ==================== */

/* min-width: 1920px */
@media (max-width: 1920px) {
  .shop-section {
    padding: 80px 100px;
  }

	  .shop-banner img {
    max-width: 500px;
  }


  .shop-intro h2 {
    font-size: 42px;
  }

  .shop-intro p {
    font-size: 20px;
  }
	
	.card {
    font-size: 22px;
    padding: 25px;
  }
}

/* max-width: 1200px */
@media (max-width: 1200px) {
  .shop-section {
    padding: 60px 40px;
  }

  .shop-banner img {
    max-width: 350px;
  }

  .shop-intro h2 {
    font-size: 34px;
  }
	
	.card {
    font-size: 20px;
    padding: 25px;
  }
}

/* max-width: 768px */
@media (max-width: 768px) {
  .shop-section {
    padding: 40px 20px;
  }

  .shop-banner img {
    max-width: 300px;
  }

  .card {
    font-size: 18px;
    padding: 20px;
  }
}

/* max-width: 480px */
@media (max-width: 480px) {
  .shop-section {
    padding: 30px 15px;
  }

  .shop-intro h2 {
    font-size: 35px;
  }

  .shop-intro p {
    font-size: 16px;
  }
	
	  .shop-banner img {
    max-width: 300px;
  }


  .card {
    padding: 10px;
    font-size: 16px;
  }

  .shop-cta .btn {
    font-size: 16px;
    padding: 10px 22px;
  }
}

/* max-width: 300px */
@media (max-width: 300px) {
  .shop-section {
    padding: 60px 10px;
  }

  .shop-intro h2 {
    font-size: 32px;
	  line-height: 40px;
  }

  .shop-intro p {
    font-size: 14px;
  }
	
	  .shop-banner img {
    max-width: 250px;
  }


  .card {
    padding: 5px;
    font-size: 16px;
  }

  .shop-cta .btn {
    font-size: 14px;
    padding: 8px 18px;
  }
}
