/**
 * =========================================================================
 * Read Toggle Styles
 * Product Description Toggle Styling
 * =========================================================================
 */

/* Hide full description initially */
.short-description-expanded {
  display: none;
}

/* Style toggle links with hardcoded colors */
.toggle-description-link {
  color: #955495;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
  display: inline;
}

/* Hover effect for toggle links */
.toggle-description-link:hover {
  text-decoration: none;
  color: #955495;
}

/* Style the "Read More" and "Read Less" links based on state */
.toggle-description-link[aria-expanded="true"] {
  color: #388e3c;
}

.toggle-description-link[aria-expanded="false"] {
  color: #f37021;
}