 @import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");

.shop-section {
  padding: 40px 0;
  background: #f8f8f8;
  font-family: 'Poppins', sans-serif;
}

.shop-card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  padding: 20px 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.shop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.shop-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 8px;
}

.shop-card h3 {
  font-size: 16px;
  margin: 10px 0 6px;
  color: #333;
}

.shop-card p {
  font-size: 14px;
  color: #777;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 20px 0 10px;
} 

.price-box {
  z-index: 2;
  width: 90px;
  text-align: center;
}

.price-box .tag {
  display: inline-block;
  color: #fff;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 10px;
  margin-bottom: 4px;
}

.price-box .amount {
  display: inline-flex
;
    align-items: center;
    gap: 2px;
    /* color: #cb1d25; */
    font-weight: 600;
    text-decoration: none;
    font-size: 24px;
    /* margin: 25px 0; */
    transition: color 0.3s ease;
  color: #333;
  min-height: 45px;
}

.price-box.black .tag {
  background: #333;
  display: none;
}

.price-box.red .tag {
  background: #e60000;
  display: none;
}

.price-center {
  z-index: 3;
}

.whatsapp-btn {
  background: #25D366;
  color: #fff;
  font-size: 22px;
  padding: 10px 16px;
  border-radius: 50%;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  background: #1ebd5a;
}


.card-links {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.card-links a {
  color: #666;
  text-decoration: none;
  transition: 0.3s;
  display: flex;
}

.card-links a:hover {
  color: #007aa5;
}

.card-links a:hover p {
  color: #007aa5;
}

.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #e60000;
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 5px;
}

.inline-multiple-price{
  display: flex;
  justify-content: center;
}

.inline-multiple-price span{
  display: flex;
}
.inline-multiple-price span.material-symbols-outlined{
  font-size: 20px;
}