/* Modern Price Badge styling applied to existing markup */
.explore-price-box{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:linear-gradient(135deg,#111827,#1f2937);
  box-shadow:0 6px 20px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.06);
  font-weight:700;
  line-height:1.1;
  color:transparent; /* hide literal 'price' text in markup */
}
.explore-price-box .explore-price{
  color:#fff; /* visible price text */
  font-size:16px;
}
.explore-price-box::before{
  content:"\f156"; /* rupee icon */
  font-family:'FontAwesome';
  font-style:normal;
  font-weight:normal;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  color:#38bdf8;
  background:rgba(56,189,248,0.12);
  border-radius:999px;
  padding:6px;
  font-size:14px;
}
/* Responsive tweaks */
@media (max-width:768px){
  .explore-price-box{padding:6px 10px;gap:6px}
  .explore-price-box .explore-price{font-size:15px}
}
