/*awal box tokopedia*/
/* Font Awesome (for the cart icon) */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

.shop-box {
  width: 100%;
  max-width: 600px;
  margin: 40px auto;
  background: linear-gradient(135deg, #c1f0c1, #e6ffe6);
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 128, 0, 0.2);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: floatBox 1s ease-in-out;
}

.shop-box:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 128, 0, 0.3);
}

.shop-content {
  padding: 30px;
  text-align: center;
}

.shop-logo {
  max-width: 120px;
  margin-bottom: 5px;
  animation: popIn 0.6s ease;
}

.shop-content h2 {
  font-size: 24px;
  color: #006400;
  margin-bottom: 10px;
}

.shop-content p {
  font-size: 16px;
  color: #444;
  margin-bottom: 25px;
}

.shop-button {
  background-color: #008000;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.shop-button i {
  font-size: 18px;
}

.shop-button:hover {
  background-color: #005f00;
  transform: translateY(-2px);
}

/* Animations */
@keyframes popIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes floatBox {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/*akhir box tokopedia*/