/* Igualar button a link del dropdown AL 100% */
.cs_site_header.cs_style_1 .cs_dropdown_list a,
.cs_site_header.cs_style_1 .cs_dropdown_list .cs_dropdown_link {
  display: block;
  width: 100%;
  padding: 6px 20px;

  line-height: 1.6;       /* ← ESTA era la diferencia */
  font-weight: 500;      /* ← ESTA también */
  color: var(--primary-color);
  text-align: left;

  background: none;
  border: none;
  cursor: pointer;
}

/* Hover EXACTO */
.cs_site_header.cs_style_1 .cs_dropdown_list a:hover,
.cs_site_header.cs_style_1 .cs_dropdown_list .cs_dropdown_link:hover {
  opacity: 0.75;
}
