.shop-section {
  padding: 100px 20px;
}

.shop-header {
  text-align: center;
  margin-bottom: 30px;
}

.shop-header h2 {
  font-family: 'Fredoka', cursive;
  font-size: 48px;
  margin-bottom: 10px;
}

.shop-header p {
  color: #666;
}

.shop-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  font-family: 'Fredoka', cursive;
  transition: 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: #2BAAF7;
  color: white;
  border-color: #2BAAF7;
}

.shop-layout {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

/* PRODUCTS */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.stack{
    display: flex;
    flex-direction: column;
}

.shop-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 22px;
  overflow: hidden;
  padding: 16px;
  text-align: center;
  transition: 0.3s ease;
}

.shop-card:hover {
  transform: translateY(-5px);
  border-color: #2BAAF7;
  box-shadow: 0 12px 30px rgba(43, 170, 247, 0.12);
}

.shop-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  background: #f3f3f3;
  margin-bottom: 12px;
}

.product-tag {
  display: inline-block;
  font-size: 12px;
  background: #FFB3EF;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.shop-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.shop-card p {
  color: #2BAAF7;
  font-weight: 700;
  margin-bottom: 14px;
}

.add-cart {
  border: none;
  background: #2BAAF7;
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.add-cart:hover {
  opacity: 0.85;
}


.cart-box {
  background: white;
  border: 1px solid #eee;
  border-radius: 24px;
  padding: 20px;
  height: fit-content;
  position: sticky;
  top: 90px;
}

.cart-box h3 {
  margin-bottom: 16px;
  font-family: 'Fredoka', cursive;
  font-size: 28px;
}

.empty-cart {
  color: #777;
  font-size: 14px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.cart-total {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 18px;
}

.checkout-btn {
  margin-top: 18px;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 999px;
  background: #FFB3EF;
  color: #111;
  font-weight: 700;
  cursor: pointer;
}


@media (max-width: 1000px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cart-box {
    position: static;
  }
}

@media (max-width: 650px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .shop-header h2 {
    font-size: 36px;
  }
}


.bulk-section {
  max-width: 1100px;
  margin: 80px auto 0;
}

.bulk-title {
  font-family: 'Fredoka', cursive;
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
}

.bulk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.bulk-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 22px;
  padding: 16px;
  text-align: center;
  transition: 0.3s ease;
}

.bulk-card:hover {
  transform: translateY(-5px);
  border-color: #FFB3EF;
  box-shadow: 0 12px 30px rgba(255, 179, 239, 0.2);
}

.bulk-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  background: #f3f3f3;
  margin-bottom: 12px;
}

.bulk-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.bulk-card p {
  color: #FFB3EF;
  font-weight: 700;
  margin-bottom: 14px;
}


@media (max-width: 900px) {
  .bulk-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .bulk-grid {
    grid-template-columns: 1fr;
  }
}