.mkfp-meta-fields {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 1.5rem;
  background: #fdfdfd;
  border-radius: 14px;
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
  border: 1px solid #ebebeb;
  padding: 1.15rem 1rem;
  position: relative;
}
.mkfp-meta-fields::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
height: 0.06em;
    background: linear-gradient(90deg, rgba(125, 185, 255, 0) 0%, #ffb9b9 20%, #f2d9d9 80%, rgb(166 227 255 / 1%) 100%);
    z-index: 1;
}
.mkfp-meta-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-width: 180px;
  flex: 1 1 0;
  padding: 0 2rem;
  position: relative;
  gap: 0.75rem;
 
  transition: transform 0.18s cubic-bezier(.4,1.5,.5,1);
  text-decoration: none;
  color: inherit;
}
.mkfp-meta-item:hover {
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}
.mkfp-clickable {
  text-decoration: none;
  color: inherit;
}
.mkfp-clickable:hover {
  text-decoration: none;
  color: inherit;
}
.mkfp-meta-item:not(:last-child) {
  border-right: 1px solid #e0e6ed;
  height: 80%;
}

.mkfp-meta-icon {
  width: 45px;
  height: 45px;
  display: flex;
  margin-right: 0.3rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
  background: #e09fc5;
  padding: 8px;
  border-radius: 10px;
  transition: transform 0.18s cubic-bezier(.4,1.5,.5,1), box-shadow 0.18s cubic-bezier(.4,1.5,.5,1);
}
.mkfp-meta-item:hover .mkfp-meta-icon {
  transform: scale(1.13);
  box-shadow: 0 2px 8px rgba(106,141,255,0.13);
}
.mkfp-meta-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  -webkit-user-drag: none;
}
.mkfp-meta-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* No align-items, let text be left-aligned by default */
}
.mkfp-meta-label {
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
  color: #444;
  text-align: left;
  position: relative;
}
.mkfp-meta-label::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #d4afcd;
  transition: width 0.3s ease;
}
.mkfp-meta-item:hover .mkfp-meta-label::after {
  width: 50%;
}
.mkfp-meta-value {
  font-size: 1.5rem;
  color: #456080;
  text-align: left;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .mkfp-meta-fields {
    padding: 1rem 0.5rem;
  }
  .mkfp-meta-item {
    padding: 0 1rem;
    min-width: 140px;
    gap: 0.5rem;
  }
  .mkfp-meta-icon {
    width: 40px;
    height: 40px;
  }
  .mkfp-meta-label, .mkfp-meta-value {
    font-size: 1rem;
  }
}
@media (max-width: 700px) {
  .mkfp-meta-fields {
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0.2rem;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  }
  .mkfp-meta-item {
    flex-direction: row;
    border-right: none !important;
    border-bottom: 1px solid #e0e6ed;
    min-width: 0;
    width: 100%;
    padding: 1rem 0.5rem;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
  }
  .mkfp-meta-item:not(:last-child)::after {
    display: none;
  }
  .mkfp-meta-item:last-child {
    border-bottom: none;
  }
  .mkfp-meta-icon {
    width: 36px;
    height: 36px;
  }
  .mkfp-meta-label, .mkfp-meta-value {
    font-size: 0.98rem;
  }
}
@media (max-width: 480px) {
  .mkfp-meta-fields {
    padding: 0.2rem 0.1rem;
    border-radius: 8px;
  }
  .mkfp-meta-item {
    padding: 0.7rem 0.2rem;
  }
  .mkfp-meta-icon {
    width: 28px;
    height: 28px;
  }
  .mkfp-meta-label, .mkfp-meta-value {
    font-size: 0.92rem;
  }
} 
/* visit author page link css */
.salebutton
{
font-size:12px;
font-weight:500;
letter-spacing: 0.7px;
padding:3px 5px;
border-radius: 0 0 5px 5px;
box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.3), 0 0px 5px 0 rgba(0, 0, 0, 0.2);
width:100%;
background:#eee;
position:absolute;
text-align:center;
cursor:pointer;
color:black;
}
.salebutton:hover
{
font-weight:bold;
color:#1e68c4;
}

.mkfp-tooltip-icon {
  position: relative;
  display: inline-block;
  cursor: help;
  color: #1e68c4;
  font-size: 1em;
  margin-left: 4px;
}

.mkfp-tooltip-text {
  visibility: hidden;
  width: 180px;
  background: #3b3b3bd0;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 7px 10px;
  position: absolute;
  z-index: 10;
  top: 125%;
  /* left: 50%; */
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.2s;
  font-size: 0.85em;
  pointer-events: none;
}

.mkfp-tooltip-icon:hover .mkfp-tooltip-text,
.mkfp-tooltip-icon:focus .mkfp-tooltip-text {
  visibility: visible;
  opacity: 1;
}