#product-inner-price{
  color:#000 !important;
}
/*acc*/
.noedit p{
  font-family: 'Poppins', sans-serif;
  font-size:14px ;
}
.mw-accordion-faq-skin-button {
  height: 30px !important;
  border: 1px solid #EAEAE5 !important;
  border-radius: 12px;
  color: #333;
  font-weight: 400 !important;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.mw-accordion-faq-skin-button:hover {
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  transform: translateY(-2px);
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
}
.mw-accordion-faq-skin-button h5{
  font-size:14px !important;
  font-weight:500 !important;
  font-family: 'Poppins', sans-serif;
}
/*acc END*/
/*Custom*/
.custom-radio {
  display: inline-block;
  margin: -5px;
  cursor: pointer;
}
.custom-radio input[type="radio"] {
  display: none; 
}
.custom-radio label {
  display: inline-block;
  padding: 7px 20px;
  font-size:14px !important;
  border: 2px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}
.custom-radio label:hover {
  border-color:#000;
}
.custom-radio input[type="radio"]:checked + label {
  border-color: #000;
  color: #000;
}
/*Custom END*/
/*About Us*/

/* =========================
   ABOUT A-LEEF (IMAGE + TEXT)
========================= */
.aleef-about {
  background: #F6F6F2;
  padding: 90px 20px;
  font-family: 'Poppins', sans-serif;
}

.aleef-about-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* IMAGE */
.aleef-about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
}

/* CONTENT */
.aleef-about-content {
  max-width: 480px;
}

.aleef-tagline {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7A7D50;
  margin-bottom: 10px;
  display: inline-block;
}

.aleef-about-content h2 {
  font-size: 38px;
  font-weight: 500;
  color: #2B2B2B;
  margin-bottom: 22px;
}

.aleef-about-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
}

/* =========================
   MOBILE VIEW PERFECT
========================= */
@media (max-width: 900px) {
  .aleef-about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .aleef-about-image img {
    height: 300px;
  }

  .aleef-about-content {
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .aleef-about {
    padding: 60px 16px;
  }

  .aleef-about-content h2 {
    font-size: 26px;
  }

  .aleef-about-content p {
    font-size: 14px;
    line-height: 1.8;
  }
}


/*About Us END*/